1 /* tc-xtensa.c -- Assemble Xtensa instructions.
2 Copyright 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
4 This file is part of GAS, the GNU Assembler.
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)
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.
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. */
24 #include "safe-ctype.h"
25 #include "tc-xtensa.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"
33 /* Provide default values for new configuration settings. */
39 #define uint32 unsigned int
42 #define int32 signed int
47 Naming conventions (used somewhat inconsistently):
48 The xtensa_ functions are exported
49 The xg_ functions are internal
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. */
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";
71 /* Flags to indicate whether the hardware supports the density and
72 absolute literals options. */
74 bfd_boolean density_supported
= XCHAL_HAVE_DENSITY
;
75 bfd_boolean absolute_literals_supported
= XSHAL_USE_ABSOLUTE_LITERALS
;
77 /* Maximum width we would pad an unreachable frag to get alignment. */
78 #define UNREACHABLE_MAX_WIDTH 8
80 static vliw_insn cur_vinsn
;
82 unsigned xtensa_fetch_width
= XCHAL_INST_FETCH_WIDTH
;
84 static enum debug_info_type xt_saved_debug_type
= DEBUG_NONE
;
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
89 static bfd_boolean past_xtensa_end
= FALSE
;
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
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. */
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")
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
115 typedef struct lit_state_struct
118 segT current_text_seg
;
123 static lit_state default_lit_sections
;
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. */
130 typedef struct seg_list_struct
132 struct seg_list_struct
*next
;
136 static seg_list literal_head_h
;
137 static seg_list
*literal_head
= &literal_head_h
;
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. */
146 typedef struct sym_list_struct
148 struct sym_list_struct
*next
;
152 static sym_list
*insn_labels
= NULL
;
153 static sym_list
*free_insn_labels
= NULL
;
154 static sym_list
*saved_insn_labels
= NULL
;
156 static sym_list
*literal_syms
;
159 /* Flags to determine whether to prefer const16 or l32r
160 if both options are available. */
161 int prefer_const16
= 0;
164 /* Global flag to indicate when we are emitting literals. */
165 int generating_literals
= 0;
167 /* The following PROPERTY table definitions are copied from
168 <elf/xtensa.h> and must be kept in sync with the code there. */
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. */
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
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.
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:
207 #define XTENSA_PROP_BT_ALIGN_MASK 0x00000600
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
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))
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. */
236 #define XTENSA_PROP_ALIGN 0x00000800
238 #define XTENSA_PROP_ALIGNMENT_MASK 0x0001f000
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))
246 #define XTENSA_PROP_INSN_ABSLIT 0x00020000
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. */
255 typedef struct frag_flags_struct frag_flags
;
257 struct frag_flags_struct
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. */
263 unsigned is_literal
: 1;
264 unsigned is_insn
: 1;
265 unsigned is_data
: 1;
266 unsigned is_unreachable
: 1;
268 /* is_specific_opcode implies no_transform. */
269 unsigned is_no_transform
: 1;
273 unsigned is_loop_target
: 1;
274 unsigned is_branch_target
: 1; /* Branch targets have a priority. */
275 unsigned bt_align_priority
: 2;
277 unsigned is_no_density
: 1;
278 /* no_longcalls flag does not need to be placed in the object file. */
280 unsigned is_no_reorder
: 1;
282 /* Uses absolute literal addressing for l32r. */
283 unsigned is_abslit
: 1;
285 unsigned is_align
: 1;
286 unsigned alignment
: 5;
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
298 struct xtensa_block_info_struct
*next
;
302 /* Structure for saving the current state before emitting literals. */
303 typedef struct emit_state_struct
308 int generating_literals
;
312 /* Opcode placement information */
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)))
319 #define MAX_FORMATS 32
321 typedef struct op_placement_info_struct
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
331 xtensa_format narrowest
;
335 /* formats is a bitfield with the Nth bit set
336 if the opcode fits in the Nth xtensa_format. */
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
];
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
];
347 } op_placement_info
, *op_placement_info_table
;
349 op_placement_info_table op_placement_table
;
352 /* Extra expression types. */
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 #define O_pcrel O_md4 /* value is a PC-relative offset */
359 struct suffix_reloc_map
363 bfd_reloc_code_real_type reloc
;
364 unsigned char operator;
367 #define SUFFIX_MAP(str, reloc, op) { str, sizeof (str) - 1, reloc, op }
369 static struct suffix_reloc_map suffix_relocs
[] =
371 SUFFIX_MAP ("l", BFD_RELOC_LO16
, O_lo16
),
372 SUFFIX_MAP ("h", BFD_RELOC_HI16
, O_hi16
),
373 SUFFIX_MAP ("plt", BFD_RELOC_XTENSA_PLT
, O_pltrel
),
374 SUFFIX_MAP ("pcrel", BFD_RELOC_32_PCREL
, O_pcrel
),
375 { (char *) 0, 0, BFD_RELOC_UNUSED
, 0 }
389 directive_literal_prefix
,
391 directive_absolute_literals
,
392 directive_last_directive
398 bfd_boolean can_be_negated
;
401 const directive_infoS directive_info
[] =
404 { "literal", FALSE
},
406 { "transform", TRUE
},
407 { "freeregs", FALSE
},
408 { "longcalls", TRUE
},
409 { "literal_prefix", FALSE
},
410 { "schedule", TRUE
},
411 { "absolute-literals", TRUE
}
414 bfd_boolean directive_state
[] =
418 #if !XCHAL_HAVE_DENSITY
423 TRUE
, /* transform */
424 FALSE
, /* freeregs */
425 FALSE
, /* longcalls */
426 FALSE
, /* literal_prefix */
427 FALSE
, /* schedule */
428 #if XSHAL_USE_ABSOLUTE_LITERALS
429 TRUE
/* absolute_literals */
431 FALSE
/* absolute_literals */
436 /* Directive functions. */
438 static void xtensa_begin_directive (int);
439 static void xtensa_end_directive (int);
440 static void xtensa_literal_prefix (void);
441 static void xtensa_literal_position (int);
442 static void xtensa_literal_pseudo (int);
443 static void xtensa_frequency_pseudo (int);
444 static void xtensa_elf_cons (int);
446 /* Parsing and Idiom Translation. */
448 static bfd_reloc_code_real_type
xtensa_elf_suffix (char **, expressionS
*);
450 /* Various Other Internal Functions. */
452 extern bfd_boolean
xg_is_single_relaxable_insn (TInsn
*, TInsn
*, bfd_boolean
);
453 static bfd_boolean
xg_build_to_insn (TInsn
*, TInsn
*, BuildInstr
*);
454 static void xtensa_mark_literal_pool_location (void);
455 static addressT
get_expanded_loop_offset (xtensa_opcode
);
456 static fragS
*get_literal_pool_location (segT
);
457 static void set_literal_pool_location (segT
, fragS
*);
458 static void xtensa_set_frag_assembly_state (fragS
*);
459 static void finish_vinsn (vliw_insn
*);
460 static bfd_boolean
emit_single_op (TInsn
*);
461 static int total_frag_text_expansion (fragS
*);
463 /* Alignment Functions. */
465 static int get_text_align_power (unsigned);
466 static int get_text_align_max_fill_size (int, bfd_boolean
, bfd_boolean
);
467 static int branch_align_power (segT
);
469 /* Helpers for xtensa_relax_frag(). */
471 static long relax_frag_add_nop (fragS
*);
473 /* Accessors for additional per-subsegment information. */
475 static unsigned get_last_insn_flags (segT
, subsegT
);
476 static void set_last_insn_flags (segT
, subsegT
, unsigned, bfd_boolean
);
477 static float get_subseg_total_freq (segT
, subsegT
);
478 static float get_subseg_target_freq (segT
, subsegT
);
479 static void set_subseg_freq (segT
, subsegT
, float, float);
481 /* Segment list functions. */
483 static void xtensa_move_literals (void);
484 static void xtensa_reorder_segments (void);
485 static void xtensa_switch_to_literal_fragment (emit_state
*);
486 static void xtensa_switch_to_non_abs_literal_fragment (emit_state
*);
487 static void xtensa_switch_section_emit_state (emit_state
*, segT
, subsegT
);
488 static void xtensa_restore_emit_state (emit_state
*);
489 static segT
cache_literal_section (bfd_boolean
);
491 /* Import from elf32-xtensa.c in BFD library. */
493 extern asection
*xtensa_get_property_section (asection
*, const char *);
495 /* op_placement_info functions. */
497 static void init_op_placement_info_table (void);
498 extern bfd_boolean
opcode_fits_format_slot (xtensa_opcode
, xtensa_format
, int);
499 static int xg_get_single_size (xtensa_opcode
);
500 static xtensa_format
xg_get_single_format (xtensa_opcode
);
501 static int xg_get_single_slot (xtensa_opcode
);
503 /* TInsn and IStack functions. */
505 static bfd_boolean
tinsn_has_symbolic_operands (const TInsn
*);
506 static bfd_boolean
tinsn_has_invalid_symbolic_operands (const TInsn
*);
507 static bfd_boolean
tinsn_has_complex_operands (const TInsn
*);
508 static bfd_boolean
tinsn_to_insnbuf (TInsn
*, xtensa_insnbuf
);
509 static bfd_boolean
tinsn_check_arguments (const TInsn
*);
510 static void tinsn_from_chars (TInsn
*, char *, int);
511 static void tinsn_immed_from_frag (TInsn
*, fragS
*, int);
512 static int get_num_stack_text_bytes (IStack
*);
513 static int get_num_stack_literal_bytes (IStack
*);
515 /* vliw_insn functions. */
517 static void xg_init_vinsn (vliw_insn
*);
518 static void xg_clear_vinsn (vliw_insn
*);
519 static bfd_boolean
vinsn_has_specific_opcodes (vliw_insn
*);
520 static void xg_free_vinsn (vliw_insn
*);
521 static bfd_boolean vinsn_to_insnbuf
522 (vliw_insn
*, char *, fragS
*, bfd_boolean
);
523 static void vinsn_from_chars (vliw_insn
*, char *);
525 /* Expression Utilities. */
527 bfd_boolean
expr_is_const (const expressionS
*);
528 offsetT
get_expr_const (const expressionS
*);
529 void set_expr_const (expressionS
*, offsetT
);
530 bfd_boolean
expr_is_register (const expressionS
*);
531 offsetT
get_expr_register (const expressionS
*);
532 void set_expr_symbol_offset (expressionS
*, symbolS
*, offsetT
);
533 bfd_boolean
expr_is_equal (expressionS
*, expressionS
*);
534 static void copy_expr (expressionS
*, const expressionS
*);
536 /* Section renaming. */
538 static void build_section_rename (const char *);
541 /* ISA imported from bfd. */
542 extern xtensa_isa xtensa_default_isa
;
544 extern int target_big_endian
;
546 static xtensa_opcode xtensa_addi_opcode
;
547 static xtensa_opcode xtensa_addmi_opcode
;
548 static xtensa_opcode xtensa_call0_opcode
;
549 static xtensa_opcode xtensa_call4_opcode
;
550 static xtensa_opcode xtensa_call8_opcode
;
551 static xtensa_opcode xtensa_call12_opcode
;
552 static xtensa_opcode xtensa_callx0_opcode
;
553 static xtensa_opcode xtensa_callx4_opcode
;
554 static xtensa_opcode xtensa_callx8_opcode
;
555 static xtensa_opcode xtensa_callx12_opcode
;
556 static xtensa_opcode xtensa_const16_opcode
;
557 static xtensa_opcode xtensa_entry_opcode
;
558 static xtensa_opcode xtensa_extui_opcode
;
559 static xtensa_opcode xtensa_movi_opcode
;
560 static xtensa_opcode xtensa_movi_n_opcode
;
561 static xtensa_opcode xtensa_isync_opcode
;
562 static xtensa_opcode xtensa_jx_opcode
;
563 static xtensa_opcode xtensa_l32r_opcode
;
564 static xtensa_opcode xtensa_loop_opcode
;
565 static xtensa_opcode xtensa_loopnez_opcode
;
566 static xtensa_opcode xtensa_loopgtz_opcode
;
567 static xtensa_opcode xtensa_nop_opcode
;
568 static xtensa_opcode xtensa_nop_n_opcode
;
569 static xtensa_opcode xtensa_or_opcode
;
570 static xtensa_opcode xtensa_ret_opcode
;
571 static xtensa_opcode xtensa_ret_n_opcode
;
572 static xtensa_opcode xtensa_retw_opcode
;
573 static xtensa_opcode xtensa_retw_n_opcode
;
574 static xtensa_opcode xtensa_rsr_lcount_opcode
;
575 static xtensa_opcode xtensa_waiti_opcode
;
578 /* Command-line Options. */
580 bfd_boolean use_literal_section
= TRUE
;
581 static bfd_boolean align_targets
= TRUE
;
582 static bfd_boolean warn_unaligned_branch_targets
= FALSE
;
583 static bfd_boolean has_a0_b_retw
= FALSE
;
584 static bfd_boolean workaround_a0_b_retw
= FALSE
;
585 static bfd_boolean workaround_b_j_loop_end
= FALSE
;
586 static bfd_boolean workaround_short_loop
= FALSE
;
587 static bfd_boolean maybe_has_short_loop
= FALSE
;
588 static bfd_boolean workaround_close_loop_end
= FALSE
;
589 static bfd_boolean maybe_has_close_loop_end
= FALSE
;
590 static bfd_boolean enforce_three_byte_loop_align
= FALSE
;
592 /* When workaround_short_loops is TRUE, all loops with early exits must
593 have at least 3 instructions. workaround_all_short_loops is a modifier
594 to the workaround_short_loop flag. In addition to the
595 workaround_short_loop actions, all straightline loopgtz and loopnez
596 must have at least 3 instructions. */
598 static bfd_boolean workaround_all_short_loops
= FALSE
;
602 xtensa_setup_hw_workarounds (int earliest
, int latest
)
604 if (earliest
> latest
)
605 as_fatal (_("illegal range of target hardware versions"));
607 /* Enable all workarounds for pre-T1050.0 hardware. */
608 if (earliest
< 105000 || latest
< 105000)
610 workaround_a0_b_retw
|= TRUE
;
611 workaround_b_j_loop_end
|= TRUE
;
612 workaround_short_loop
|= TRUE
;
613 workaround_close_loop_end
|= TRUE
;
614 workaround_all_short_loops
|= TRUE
;
615 enforce_three_byte_loop_align
= TRUE
;
622 option_density
= OPTION_MD_BASE
,
629 option_no_link_relax
,
637 option_text_section_literals
,
638 option_no_text_section_literals
,
640 option_absolute_literals
,
641 option_no_absolute_literals
,
643 option_align_targets
,
644 option_no_align_targets
,
646 option_warn_unaligned_targets
,
651 option_workaround_a0_b_retw
,
652 option_no_workaround_a0_b_retw
,
654 option_workaround_b_j_loop_end
,
655 option_no_workaround_b_j_loop_end
,
657 option_workaround_short_loop
,
658 option_no_workaround_short_loop
,
660 option_workaround_all_short_loops
,
661 option_no_workaround_all_short_loops
,
663 option_workaround_close_loop_end
,
664 option_no_workaround_close_loop_end
,
666 option_no_workarounds
,
668 option_rename_section_name
,
671 option_prefer_const16
,
673 option_target_hardware
676 const char *md_shortopts
= "";
678 struct option md_longopts
[] =
680 { "density", no_argument
, NULL
, option_density
},
681 { "no-density", no_argument
, NULL
, option_no_density
},
683 /* Both "relax" and "generics" are deprecated and treated as equivalent
684 to the "transform" option. */
685 { "relax", no_argument
, NULL
, option_relax
},
686 { "no-relax", no_argument
, NULL
, option_no_relax
},
687 { "generics", no_argument
, NULL
, option_generics
},
688 { "no-generics", no_argument
, NULL
, option_no_generics
},
690 { "transform", no_argument
, NULL
, option_transform
},
691 { "no-transform", no_argument
, NULL
, option_no_transform
},
692 { "text-section-literals", no_argument
, NULL
, option_text_section_literals
},
693 { "no-text-section-literals", no_argument
, NULL
,
694 option_no_text_section_literals
},
695 { "absolute-literals", no_argument
, NULL
, option_absolute_literals
},
696 { "no-absolute-literals", no_argument
, NULL
, option_no_absolute_literals
},
697 /* This option was changed from -align-target to -target-align
698 because it conflicted with the "-al" option. */
699 { "target-align", no_argument
, NULL
, option_align_targets
},
700 { "no-target-align", no_argument
, NULL
, option_no_align_targets
},
701 { "warn-unaligned-targets", no_argument
, NULL
,
702 option_warn_unaligned_targets
},
703 { "longcalls", no_argument
, NULL
, option_longcalls
},
704 { "no-longcalls", no_argument
, NULL
, option_no_longcalls
},
706 { "no-workaround-a0-b-retw", no_argument
, NULL
,
707 option_no_workaround_a0_b_retw
},
708 { "workaround-a0-b-retw", no_argument
, NULL
, option_workaround_a0_b_retw
},
710 { "no-workaround-b-j-loop-end", no_argument
, NULL
,
711 option_no_workaround_b_j_loop_end
},
712 { "workaround-b-j-loop-end", no_argument
, NULL
,
713 option_workaround_b_j_loop_end
},
715 { "no-workaround-short-loops", no_argument
, NULL
,
716 option_no_workaround_short_loop
},
717 { "workaround-short-loops", no_argument
, NULL
,
718 option_workaround_short_loop
},
720 { "no-workaround-all-short-loops", no_argument
, NULL
,
721 option_no_workaround_all_short_loops
},
722 { "workaround-all-short-loop", no_argument
, NULL
,
723 option_workaround_all_short_loops
},
725 { "prefer-l32r", no_argument
, NULL
, option_prefer_l32r
},
726 { "prefer-const16", no_argument
, NULL
, option_prefer_const16
},
728 { "no-workarounds", no_argument
, NULL
, option_no_workarounds
},
730 { "no-workaround-close-loop-end", no_argument
, NULL
,
731 option_no_workaround_close_loop_end
},
732 { "workaround-close-loop-end", no_argument
, NULL
,
733 option_workaround_close_loop_end
},
735 { "rename-section", required_argument
, NULL
, option_rename_section_name
},
737 { "link-relax", no_argument
, NULL
, option_link_relax
},
738 { "no-link-relax", no_argument
, NULL
, option_no_link_relax
},
740 { "target-hardware", required_argument
, NULL
, option_target_hardware
},
742 { NULL
, no_argument
, NULL
, 0 }
745 size_t md_longopts_size
= sizeof md_longopts
;
749 md_parse_option (int c
, char *arg
)
754 as_warn (_("--density option is ignored"));
756 case option_no_density
:
757 as_warn (_("--no-density option is ignored"));
759 case option_link_relax
:
762 case option_no_link_relax
:
765 case option_generics
:
766 as_warn (_("--generics is deprecated; use --transform instead"));
767 return md_parse_option (option_transform
, arg
);
768 case option_no_generics
:
769 as_warn (_("--no-generics is deprecated; use --no-transform instead"));
770 return md_parse_option (option_no_transform
, arg
);
772 as_warn (_("--relax is deprecated; use --transform instead"));
773 return md_parse_option (option_transform
, arg
);
774 case option_no_relax
:
775 as_warn (_("--no-relax is deprecated; use --no-transform instead"));
776 return md_parse_option (option_no_transform
, arg
);
777 case option_longcalls
:
778 directive_state
[directive_longcalls
] = TRUE
;
780 case option_no_longcalls
:
781 directive_state
[directive_longcalls
] = FALSE
;
783 case option_text_section_literals
:
784 use_literal_section
= FALSE
;
786 case option_no_text_section_literals
:
787 use_literal_section
= TRUE
;
789 case option_absolute_literals
:
790 if (!absolute_literals_supported
)
792 as_fatal (_("--absolute-literals option not supported in this Xtensa configuration"));
795 directive_state
[directive_absolute_literals
] = TRUE
;
797 case option_no_absolute_literals
:
798 directive_state
[directive_absolute_literals
] = FALSE
;
801 case option_workaround_a0_b_retw
:
802 workaround_a0_b_retw
= TRUE
;
804 case option_no_workaround_a0_b_retw
:
805 workaround_a0_b_retw
= FALSE
;
807 case option_workaround_b_j_loop_end
:
808 workaround_b_j_loop_end
= TRUE
;
810 case option_no_workaround_b_j_loop_end
:
811 workaround_b_j_loop_end
= FALSE
;
814 case option_workaround_short_loop
:
815 workaround_short_loop
= TRUE
;
817 case option_no_workaround_short_loop
:
818 workaround_short_loop
= FALSE
;
821 case option_workaround_all_short_loops
:
822 workaround_all_short_loops
= TRUE
;
824 case option_no_workaround_all_short_loops
:
825 workaround_all_short_loops
= FALSE
;
828 case option_workaround_close_loop_end
:
829 workaround_close_loop_end
= TRUE
;
831 case option_no_workaround_close_loop_end
:
832 workaround_close_loop_end
= FALSE
;
835 case option_no_workarounds
:
836 workaround_a0_b_retw
= FALSE
;
837 workaround_b_j_loop_end
= FALSE
;
838 workaround_short_loop
= FALSE
;
839 workaround_all_short_loops
= FALSE
;
840 workaround_close_loop_end
= FALSE
;
843 case option_align_targets
:
844 align_targets
= TRUE
;
846 case option_no_align_targets
:
847 align_targets
= FALSE
;
850 case option_warn_unaligned_targets
:
851 warn_unaligned_branch_targets
= TRUE
;
854 case option_rename_section_name
:
855 build_section_rename (arg
);
859 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
860 should be emitted or not. FIXME: Not implemented. */
863 case option_prefer_l32r
:
865 as_fatal (_("prefer-l32r conflicts with prefer-const16"));
869 case option_prefer_const16
:
871 as_fatal (_("prefer-const16 conflicts with prefer-l32r"));
875 case option_target_hardware
:
877 int earliest
, latest
= 0;
878 if (*arg
== 0 || *arg
== '-')
879 as_fatal (_("invalid target hardware version"));
881 earliest
= strtol (arg
, &arg
, 0);
885 else if (*arg
== '-')
888 as_fatal (_("invalid target hardware version"));
889 latest
= strtol (arg
, &arg
, 0);
892 as_fatal (_("invalid target hardware version"));
894 xtensa_setup_hw_workarounds (earliest
, latest
);
898 case option_transform
:
899 /* This option has no affect other than to use the defaults,
900 which are already set. */
903 case option_no_transform
:
904 /* This option turns off all transformations of any kind.
905 However, because we want to preserve the state of other
906 directives, we only change its own field. Thus, before
907 you perform any transformation, always check if transform
908 is available. If you use the functions we provide for this
909 purpose, you will be ok. */
910 directive_state
[directive_transform
] = FALSE
;
920 md_show_usage (FILE *stream
)
924 --[no-]text-section-literals\n\
925 [Do not] put literals in the text section\n\
926 --[no-]absolute-literals\n\
927 [Do not] default to use non-PC-relative literals\n\
928 --[no-]target-align [Do not] try to align branch targets\n\
929 --[no-]longcalls [Do not] emit 32-bit call sequences\n\
930 --[no-]transform [Do not] transform instructions\n\
931 --rename-section old=new Rename section 'old' to 'new'\n", stream
);
935 /* Functions related to the list of current label symbols. */
938 xtensa_add_insn_label (symbolS
*sym
)
942 if (!free_insn_labels
)
943 l
= (sym_list
*) xmalloc (sizeof (sym_list
));
946 l
= free_insn_labels
;
947 free_insn_labels
= l
->next
;
951 l
->next
= insn_labels
;
957 xtensa_clear_insn_labels (void)
961 for (pl
= &free_insn_labels
; *pl
!= NULL
; pl
= &(*pl
)->next
)
969 xtensa_move_labels (fragS
*new_frag
, valueT new_offset
)
973 for (lit
= insn_labels
; lit
; lit
= lit
->next
)
975 symbolS
*lit_sym
= lit
->sym
;
976 S_SET_VALUE (lit_sym
, new_offset
);
977 symbol_set_frag (lit_sym
, new_frag
);
982 /* Directive data and functions. */
984 typedef struct state_stackS_struct
986 directiveE directive
;
988 bfd_boolean old_state
;
992 struct state_stackS_struct
*prev
;
995 state_stackS
*directive_state_stack
;
997 const pseudo_typeS md_pseudo_table
[] =
999 { "align", s_align_bytes
, 0 }, /* Defaulting is invalid (0). */
1000 { "literal_position", xtensa_literal_position
, 0 },
1001 { "frame", s_ignore
, 0 }, /* Formerly used for STABS debugging. */
1002 { "long", xtensa_elf_cons
, 4 },
1003 { "word", xtensa_elf_cons
, 4 },
1004 { "4byte", xtensa_elf_cons
, 4 },
1005 { "short", xtensa_elf_cons
, 2 },
1006 { "2byte", xtensa_elf_cons
, 2 },
1007 { "begin", xtensa_begin_directive
, 0 },
1008 { "end", xtensa_end_directive
, 0 },
1009 { "literal", xtensa_literal_pseudo
, 0 },
1010 { "frequency", xtensa_frequency_pseudo
, 0 },
1016 use_transform (void)
1018 /* After md_end, you should be checking frag by frag, rather
1019 than state directives. */
1020 assert (!past_xtensa_end
);
1021 return directive_state
[directive_transform
];
1026 do_align_targets (void)
1028 /* Do not use this function after md_end; just look at align_targets
1029 instead. There is no target-align directive, so alignment is either
1030 enabled for all frags or not done at all. */
1031 assert (!past_xtensa_end
);
1032 return align_targets
&& use_transform ();
1037 directive_push (directiveE directive
, bfd_boolean negated
, const void *datum
)
1041 state_stackS
*stack
= (state_stackS
*) xmalloc (sizeof (state_stackS
));
1043 as_where (&file
, &line
);
1045 stack
->directive
= directive
;
1046 stack
->negated
= negated
;
1047 stack
->old_state
= directive_state
[directive
];
1050 stack
->datum
= datum
;
1051 stack
->prev
= directive_state_stack
;
1052 directive_state_stack
= stack
;
1054 directive_state
[directive
] = !negated
;
1059 directive_pop (directiveE
*directive
,
1060 bfd_boolean
*negated
,
1065 state_stackS
*top
= directive_state_stack
;
1067 if (!directive_state_stack
)
1069 as_bad (_("unmatched end directive"));
1070 *directive
= directive_none
;
1074 directive_state
[directive_state_stack
->directive
] = top
->old_state
;
1075 *directive
= top
->directive
;
1076 *negated
= top
->negated
;
1079 *datum
= top
->datum
;
1080 directive_state_stack
= top
->prev
;
1086 directive_balance (void)
1088 while (directive_state_stack
)
1090 directiveE directive
;
1091 bfd_boolean negated
;
1096 directive_pop (&directive
, &negated
, &file
, &line
, &datum
);
1097 as_warn_where ((char *) file
, line
,
1098 _(".begin directive with no matching .end directive"));
1104 inside_directive (directiveE dir
)
1106 state_stackS
*top
= directive_state_stack
;
1108 while (top
&& top
->directive
!= dir
)
1111 return (top
!= NULL
);
1116 get_directive (directiveE
*directive
, bfd_boolean
*negated
)
1120 char *directive_string
;
1122 if (strncmp (input_line_pointer
, "no-", 3) != 0)
1127 input_line_pointer
+= 3;
1130 len
= strspn (input_line_pointer
,
1131 "abcdefghijklmnopqrstuvwxyz_-/0123456789.");
1133 /* This code is a hack to make .begin [no-][generics|relax] exactly
1134 equivalent to .begin [no-]transform. We should remove it when
1135 we stop accepting those options. */
1137 if (strncmp (input_line_pointer
, "generics", strlen ("generics")) == 0)
1139 as_warn (_("[no-]generics is deprecated; use [no-]transform instead"));
1140 directive_string
= "transform";
1142 else if (strncmp (input_line_pointer
, "relax", strlen ("relax")) == 0)
1144 as_warn (_("[no-]relax is deprecated; use [no-]transform instead"));
1145 directive_string
= "transform";
1148 directive_string
= input_line_pointer
;
1150 for (i
= 0; i
< sizeof (directive_info
) / sizeof (*directive_info
); ++i
)
1152 if (strncmp (directive_string
, directive_info
[i
].name
, len
) == 0)
1154 input_line_pointer
+= len
;
1155 *directive
= (directiveE
) i
;
1156 if (*negated
&& !directive_info
[i
].can_be_negated
)
1157 as_bad (_("directive %s cannot be negated"),
1158 directive_info
[i
].name
);
1163 as_bad (_("unknown directive"));
1164 *directive
= (directiveE
) XTENSA_UNDEFINED
;
1169 xtensa_begin_directive (int ignore ATTRIBUTE_UNUSED
)
1171 directiveE directive
;
1172 bfd_boolean negated
;
1176 get_directive (&directive
, &negated
);
1177 if (directive
== (directiveE
) XTENSA_UNDEFINED
)
1179 discard_rest_of_line ();
1183 if (cur_vinsn
.inside_bundle
)
1184 as_bad (_("directives are not valid inside bundles"));
1188 case directive_literal
:
1189 if (!inside_directive (directive_literal
))
1191 /* Previous labels go with whatever follows this directive, not with
1192 the literal, so save them now. */
1193 saved_insn_labels
= insn_labels
;
1196 as_warn (_(".begin literal is deprecated; use .literal instead"));
1197 state
= (emit_state
*) xmalloc (sizeof (emit_state
));
1198 xtensa_switch_to_literal_fragment (state
);
1199 directive_push (directive_literal
, negated
, state
);
1202 case directive_literal_prefix
:
1203 /* Have to flush pending output because a movi relaxed to an l32r
1204 might produce a literal. */
1205 md_flush_pending_output ();
1206 /* Check to see if the current fragment is a literal
1207 fragment. If it is, then this operation is not allowed. */
1208 if (generating_literals
)
1210 as_bad (_("cannot set literal_prefix inside literal fragment"));
1214 /* Allocate the literal state for this section and push
1215 onto the directive stack. */
1216 ls
= xmalloc (sizeof (lit_state
));
1219 *ls
= default_lit_sections
;
1220 directive_push (directive_literal_prefix
, negated
, ls
);
1222 /* Process the new prefix. */
1223 xtensa_literal_prefix ();
1226 case directive_freeregs
:
1227 /* This information is currently unused, but we'll accept the statement
1228 and just discard the rest of the line. This won't check the syntax,
1229 but it will accept every correct freeregs directive. */
1230 input_line_pointer
+= strcspn (input_line_pointer
, "\n");
1231 directive_push (directive_freeregs
, negated
, 0);
1234 case directive_schedule
:
1235 md_flush_pending_output ();
1236 frag_var (rs_fill
, 0, 0, frag_now
->fr_subtype
,
1237 frag_now
->fr_symbol
, frag_now
->fr_offset
, NULL
);
1238 directive_push (directive_schedule
, negated
, 0);
1239 xtensa_set_frag_assembly_state (frag_now
);
1242 case directive_density
:
1243 as_warn (_(".begin [no-]density is ignored"));
1246 case directive_absolute_literals
:
1247 md_flush_pending_output ();
1248 if (!absolute_literals_supported
&& !negated
)
1250 as_warn (_("Xtensa absolute literals option not supported; ignored"));
1253 xtensa_set_frag_assembly_state (frag_now
);
1254 directive_push (directive
, negated
, 0);
1258 md_flush_pending_output ();
1259 xtensa_set_frag_assembly_state (frag_now
);
1260 directive_push (directive
, negated
, 0);
1264 demand_empty_rest_of_line ();
1269 xtensa_end_directive (int ignore ATTRIBUTE_UNUSED
)
1271 directiveE begin_directive
, end_directive
;
1272 bfd_boolean begin_negated
, end_negated
;
1276 emit_state
**state_ptr
;
1279 if (cur_vinsn
.inside_bundle
)
1280 as_bad (_("directives are not valid inside bundles"));
1282 get_directive (&end_directive
, &end_negated
);
1284 md_flush_pending_output ();
1286 switch (end_directive
)
1288 case (directiveE
) XTENSA_UNDEFINED
:
1289 discard_rest_of_line ();
1292 case directive_density
:
1293 as_warn (_(".end [no-]density is ignored"));
1294 demand_empty_rest_of_line ();
1297 case directive_absolute_literals
:
1298 if (!absolute_literals_supported
&& !end_negated
)
1300 as_warn (_("Xtensa absolute literals option not supported; ignored"));
1301 demand_empty_rest_of_line ();
1310 state_ptr
= &state
; /* use state_ptr to avoid type-punning warning */
1311 directive_pop (&begin_directive
, &begin_negated
, &file
, &line
,
1312 (const void **) state_ptr
);
1314 if (begin_directive
!= directive_none
)
1316 if (begin_directive
!= end_directive
|| begin_negated
!= end_negated
)
1318 as_bad (_("does not match begin %s%s at %s:%d"),
1319 begin_negated
? "no-" : "",
1320 directive_info
[begin_directive
].name
, file
, line
);
1324 switch (end_directive
)
1326 case directive_literal
:
1327 frag_var (rs_fill
, 0, 0, 0, NULL
, 0, NULL
);
1328 xtensa_restore_emit_state (state
);
1329 xtensa_set_frag_assembly_state (frag_now
);
1331 if (!inside_directive (directive_literal
))
1333 /* Restore the list of current labels. */
1334 xtensa_clear_insn_labels ();
1335 insn_labels
= saved_insn_labels
;
1339 case directive_literal_prefix
:
1340 /* Restore the default collection sections from saved state. */
1341 s
= (lit_state
*) state
;
1343 default_lit_sections
= *s
;
1345 /* Free the state storage. */
1346 free (s
->lit_prefix
);
1350 case directive_schedule
:
1351 case directive_freeregs
:
1355 xtensa_set_frag_assembly_state (frag_now
);
1361 demand_empty_rest_of_line ();
1365 /* Place an aligned literal fragment at the current location. */
1368 xtensa_literal_position (int ignore ATTRIBUTE_UNUSED
)
1370 md_flush_pending_output ();
1372 if (inside_directive (directive_literal
))
1373 as_warn (_(".literal_position inside literal directive; ignoring"));
1374 xtensa_mark_literal_pool_location ();
1376 demand_empty_rest_of_line ();
1377 xtensa_clear_insn_labels ();
1381 /* Support .literal label, expr, ... */
1384 xtensa_literal_pseudo (int ignored ATTRIBUTE_UNUSED
)
1387 char *p
, *base_name
;
1391 if (inside_directive (directive_literal
))
1393 as_bad (_(".literal not allowed inside .begin literal region"));
1394 ignore_rest_of_line ();
1398 md_flush_pending_output ();
1400 /* Previous labels go with whatever follows this directive, not with
1401 the literal, so save them now. */
1402 saved_insn_labels
= insn_labels
;
1405 /* If we are using text-section literals, then this is the right value... */
1408 base_name
= input_line_pointer
;
1410 xtensa_switch_to_literal_fragment (&state
);
1412 /* ...but if we aren't using text-section-literals, then we
1413 need to put them in the section we just switched to. */
1414 if (use_literal_section
|| directive_state
[directive_absolute_literals
])
1417 /* All literals are aligned to four-byte boundaries. */
1418 frag_align (2, 0, 0);
1419 record_alignment (now_seg
, 2);
1421 c
= get_symbol_end ();
1422 /* Just after name is now '\0'. */
1423 p
= input_line_pointer
;
1427 if (*input_line_pointer
!= ',' && *input_line_pointer
!= ':')
1429 as_bad (_("expected comma or colon after symbol name; "
1430 "rest of line ignored"));
1431 ignore_rest_of_line ();
1432 xtensa_restore_emit_state (&state
);
1440 input_line_pointer
++; /* skip ',' or ':' */
1442 xtensa_elf_cons (4);
1444 xtensa_restore_emit_state (&state
);
1446 /* Restore the list of current labels. */
1447 xtensa_clear_insn_labels ();
1448 insn_labels
= saved_insn_labels
;
1453 xtensa_literal_prefix (void)
1458 /* Parse the new prefix from the input_line_pointer. */
1460 len
= strspn (input_line_pointer
,
1461 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1462 "abcdefghijklmnopqrstuvwxyz_/0123456789.$");
1464 /* Get a null-terminated copy of the name. */
1465 name
= xmalloc (len
+ 1);
1467 strncpy (name
, input_line_pointer
, len
);
1470 /* Skip the name in the input line. */
1471 input_line_pointer
+= len
;
1473 default_lit_sections
.lit_prefix
= name
;
1475 /* Clear cached literal sections, since the prefix has changed. */
1476 default_lit_sections
.lit_seg
= NULL
;
1477 default_lit_sections
.lit4_seg
= NULL
;
1481 /* Support ".frequency branch_target_frequency fall_through_frequency". */
1484 xtensa_frequency_pseudo (int ignored ATTRIBUTE_UNUSED
)
1486 float fall_through_f
, target_f
;
1488 fall_through_f
= (float) strtod (input_line_pointer
, &input_line_pointer
);
1489 if (fall_through_f
< 0)
1491 as_bad (_("fall through frequency must be greater than 0"));
1492 ignore_rest_of_line ();
1496 target_f
= (float) strtod (input_line_pointer
, &input_line_pointer
);
1499 as_bad (_("branch target frequency must be greater than 0"));
1500 ignore_rest_of_line ();
1504 set_subseg_freq (now_seg
, now_subseg
, target_f
+ fall_through_f
, target_f
);
1506 demand_empty_rest_of_line ();
1510 /* Like normal .long/.short/.word, except support @plt, etc.
1511 Clobbers input_line_pointer, checks end-of-line. */
1514 xtensa_elf_cons (int nbytes
)
1517 bfd_reloc_code_real_type reloc
;
1519 md_flush_pending_output ();
1521 if (cur_vinsn
.inside_bundle
)
1522 as_bad (_("directives are not valid inside bundles"));
1524 if (is_it_end_of_statement ())
1526 demand_empty_rest_of_line ();
1533 if (exp
.X_op
== O_symbol
1534 && *input_line_pointer
== '@'
1535 && ((reloc
= xtensa_elf_suffix (&input_line_pointer
, &exp
))
1538 reloc_howto_type
*reloc_howto
=
1539 bfd_reloc_type_lookup (stdoutput
, reloc
);
1541 if (reloc
== BFD_RELOC_UNUSED
|| !reloc_howto
)
1542 as_bad (_("unsupported relocation"));
1543 else if ((reloc
>= BFD_RELOC_XTENSA_SLOT0_OP
1544 && reloc
<= BFD_RELOC_XTENSA_SLOT14_OP
)
1545 || (reloc
>= BFD_RELOC_XTENSA_SLOT0_ALT
1546 && reloc
<= BFD_RELOC_XTENSA_SLOT14_ALT
))
1547 as_bad (_("opcode-specific %s relocation used outside "
1548 "an instruction"), reloc_howto
->name
);
1549 else if (nbytes
!= (int) bfd_get_reloc_size (reloc_howto
))
1550 as_bad (_("%s relocations do not fit in %d bytes"),
1551 reloc_howto
->name
, nbytes
);
1554 char *p
= frag_more ((int) nbytes
);
1555 xtensa_set_frag_assembly_state (frag_now
);
1556 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
,
1557 nbytes
, &exp
, reloc_howto
->pc_relative
, reloc
);
1562 xtensa_set_frag_assembly_state (frag_now
);
1563 emit_expr (&exp
, (unsigned int) nbytes
);
1566 while (*input_line_pointer
++ == ',');
1568 input_line_pointer
--; /* Put terminator back into stream. */
1569 demand_empty_rest_of_line ();
1573 /* Parsing and Idiom Translation. */
1575 /* Parse @plt, etc. and return the desired relocation. */
1576 static bfd_reloc_code_real_type
1577 xtensa_elf_suffix (char **str_p
, expressionS
*exp_p
)
1584 struct suffix_reloc_map
*ptr
;
1587 return BFD_RELOC_NONE
;
1589 for (ch
= *str
, str2
= ident
;
1590 (str2
< ident
+ sizeof (ident
) - 1
1591 && (ISALNUM (ch
) || ch
== '@'));
1594 *str2
++ = (ISLOWER (ch
)) ? ch
: TOLOWER (ch
);
1601 for (ptr
= &suffix_relocs
[0]; ptr
->length
> 0; ptr
++)
1602 if (ch
== ptr
->suffix
[0]
1603 && len
== ptr
->length
1604 && memcmp (ident
, ptr
->suffix
, ptr
->length
) == 0)
1606 /* Now check for "identifier@suffix+constant". */
1607 if (*str
== '-' || *str
== '+')
1609 char *orig_line
= input_line_pointer
;
1610 expressionS new_exp
;
1612 input_line_pointer
= str
;
1613 expression (&new_exp
);
1614 if (new_exp
.X_op
== O_constant
)
1616 exp_p
->X_add_number
+= new_exp
.X_add_number
;
1617 str
= input_line_pointer
;
1620 if (&input_line_pointer
!= str_p
)
1621 input_line_pointer
= orig_line
;
1628 return BFD_RELOC_UNUSED
;
1632 /* Find the matching operator type. */
1633 static unsigned char
1634 map_suffix_reloc_to_operator (bfd_reloc_code_real_type reloc
)
1636 struct suffix_reloc_map
*sfx
;
1637 unsigned char operator = (unsigned char) -1;
1639 for (sfx
= &suffix_relocs
[0]; sfx
->suffix
; sfx
++)
1641 if (sfx
->reloc
== reloc
)
1643 operator = sfx
->operator;
1647 assert (operator != (unsigned char) -1);
1652 /* Find the matching reloc type. */
1653 static bfd_reloc_code_real_type
1654 map_operator_to_reloc (unsigned char operator)
1656 struct suffix_reloc_map
*sfx
;
1657 bfd_reloc_code_real_type reloc
= BFD_RELOC_UNUSED
;
1659 for (sfx
= &suffix_relocs
[0]; sfx
->suffix
; sfx
++)
1661 if (sfx
->operator == operator)
1668 if (reloc
== BFD_RELOC_UNUSED
)
1669 return BFD_RELOC_32
;
1676 expression_end (const char *name
)
1699 #define ERROR_REG_NUM ((unsigned) -1)
1702 tc_get_register (const char *prefix
)
1705 const char *next_expr
;
1706 const char *old_line_pointer
;
1709 old_line_pointer
= input_line_pointer
;
1711 if (*input_line_pointer
== '$')
1712 ++input_line_pointer
;
1714 /* Accept "sp" as a synonym for "a1". */
1715 if (input_line_pointer
[0] == 's' && input_line_pointer
[1] == 'p'
1716 && expression_end (input_line_pointer
+ 2))
1718 input_line_pointer
+= 2;
1719 return 1; /* AR[1] */
1722 while (*input_line_pointer
++ == *prefix
++)
1724 --input_line_pointer
;
1729 as_bad (_("bad register name: %s"), old_line_pointer
);
1730 return ERROR_REG_NUM
;
1733 if (!ISDIGIT ((unsigned char) *input_line_pointer
))
1735 as_bad (_("bad register number: %s"), input_line_pointer
);
1736 return ERROR_REG_NUM
;
1741 while (ISDIGIT ((int) *input_line_pointer
))
1742 reg
= reg
* 10 + *input_line_pointer
++ - '0';
1744 if (!(next_expr
= expression_end (input_line_pointer
)))
1746 as_bad (_("bad register name: %s"), old_line_pointer
);
1747 return ERROR_REG_NUM
;
1750 input_line_pointer
= (char *) next_expr
;
1757 expression_maybe_register (xtensa_opcode opc
, int opnd
, expressionS
*tok
)
1759 xtensa_isa isa
= xtensa_default_isa
;
1761 /* Check if this is an immediate operand. */
1762 if (xtensa_operand_is_register (isa
, opc
, opnd
) == 0)
1764 bfd_reloc_code_real_type reloc
;
1765 segT t
= expression (tok
);
1766 if (t
== absolute_section
1767 && xtensa_operand_is_PCrelative (isa
, opc
, opnd
) == 1)
1769 assert (tok
->X_op
== O_constant
);
1770 tok
->X_op
= O_symbol
;
1771 tok
->X_add_symbol
= &abs_symbol
;
1774 if ((tok
->X_op
== O_constant
|| tok
->X_op
== O_symbol
)
1775 && ((reloc
= xtensa_elf_suffix (&input_line_pointer
, tok
))
1780 case BFD_RELOC_LO16
:
1781 if (tok
->X_op
== O_constant
)
1783 tok
->X_add_number
&= 0xffff;
1787 case BFD_RELOC_HI16
:
1788 if (tok
->X_op
== O_constant
)
1790 tok
->X_add_number
= ((unsigned) tok
->X_add_number
) >> 16;
1794 case BFD_RELOC_UNUSED
:
1795 as_bad (_("unsupported relocation"));
1797 case BFD_RELOC_32_PCREL
:
1798 as_bad (_("pcrel relocation not allowed in an instruction"));
1803 tok
->X_op
= map_suffix_reloc_to_operator (reloc
);
1808 xtensa_regfile opnd_rf
= xtensa_operand_regfile (isa
, opc
, opnd
);
1809 unsigned reg
= tc_get_register (xtensa_regfile_shortname (isa
, opnd_rf
));
1811 if (reg
!= ERROR_REG_NUM
) /* Already errored */
1814 if (xtensa_operand_encode (isa
, opc
, opnd
, &buf
))
1815 as_bad (_("register number out of range"));
1818 tok
->X_op
= O_register
;
1819 tok
->X_add_symbol
= 0;
1820 tok
->X_add_number
= reg
;
1825 /* Split up the arguments for an opcode or pseudo-op. */
1828 tokenize_arguments (char **args
, char *str
)
1830 char *old_input_line_pointer
;
1831 bfd_boolean saw_comma
= FALSE
;
1832 bfd_boolean saw_arg
= FALSE
;
1833 bfd_boolean saw_colon
= FALSE
;
1835 char *arg_end
, *arg
;
1838 /* Save and restore input_line_pointer around this function. */
1839 old_input_line_pointer
= input_line_pointer
;
1840 input_line_pointer
= str
;
1842 while (*input_line_pointer
)
1845 switch (*input_line_pointer
)
1852 input_line_pointer
++;
1853 if (saw_comma
|| saw_colon
|| !saw_arg
)
1859 input_line_pointer
++;
1860 if (saw_comma
|| saw_colon
|| !saw_arg
)
1866 if (!saw_comma
&& !saw_colon
&& saw_arg
)
1869 arg_end
= input_line_pointer
+ 1;
1870 while (!expression_end (arg_end
))
1873 arg_len
= arg_end
- input_line_pointer
;
1874 arg
= (char *) xmalloc ((saw_colon
? 1 : 0) + arg_len
+ 1);
1875 args
[num_args
] = arg
;
1879 strncpy (arg
, input_line_pointer
, arg_len
);
1880 arg
[arg_len
] = '\0';
1882 input_line_pointer
= arg_end
;
1892 if (saw_comma
|| saw_colon
)
1894 input_line_pointer
= old_input_line_pointer
;
1899 as_bad (_("extra comma"));
1901 as_bad (_("extra colon"));
1903 as_bad (_("missing argument"));
1905 as_bad (_("missing comma or colon"));
1906 input_line_pointer
= old_input_line_pointer
;
1911 /* Parse the arguments to an opcode. Return TRUE on error. */
1914 parse_arguments (TInsn
*insn
, int num_args
, char **arg_strings
)
1916 expressionS
*tok
, *last_tok
;
1917 xtensa_opcode opcode
= insn
->opcode
;
1918 bfd_boolean had_error
= TRUE
;
1919 xtensa_isa isa
= xtensa_default_isa
;
1920 int n
, num_regs
= 0;
1921 int opcode_operand_count
;
1922 int opnd_cnt
, last_opnd_cnt
;
1923 unsigned int next_reg
= 0;
1924 char *old_input_line_pointer
;
1926 if (insn
->insn_type
== ITYPE_LITERAL
)
1927 opcode_operand_count
= 1;
1929 opcode_operand_count
= xtensa_opcode_num_operands (isa
, opcode
);
1932 memset (tok
, 0, sizeof (*tok
) * MAX_INSN_ARGS
);
1934 /* Save and restore input_line_pointer around this function. */
1935 old_input_line_pointer
= input_line_pointer
;
1941 /* Skip invisible operands. */
1942 while (xtensa_operand_is_visible (isa
, opcode
, opnd_cnt
) == 0)
1948 for (n
= 0; n
< num_args
; n
++)
1950 input_line_pointer
= arg_strings
[n
];
1951 if (*input_line_pointer
== ':')
1953 xtensa_regfile opnd_rf
;
1954 input_line_pointer
++;
1957 assert (opnd_cnt
> 0);
1959 opnd_rf
= xtensa_operand_regfile (isa
, opcode
, last_opnd_cnt
);
1961 != tc_get_register (xtensa_regfile_shortname (isa
, opnd_rf
)))
1962 as_warn (_("incorrect register number, ignoring"));
1967 if (opnd_cnt
>= opcode_operand_count
)
1969 as_warn (_("too many arguments"));
1972 assert (opnd_cnt
< MAX_INSN_ARGS
);
1974 expression_maybe_register (opcode
, opnd_cnt
, tok
);
1975 next_reg
= tok
->X_add_number
+ 1;
1977 if (tok
->X_op
== O_illegal
|| tok
->X_op
== O_absent
)
1979 if (xtensa_operand_is_register (isa
, opcode
, opnd_cnt
) == 1)
1981 num_regs
= xtensa_operand_num_regs (isa
, opcode
, opnd_cnt
) - 1;
1982 /* minus 1 because we are seeing one right now */
1988 last_opnd_cnt
= opnd_cnt
;
1995 while (xtensa_operand_is_visible (isa
, opcode
, opnd_cnt
) == 0);
1999 if (num_regs
> 0 && ((int) next_reg
!= last_tok
->X_add_number
+ 1))
2002 insn
->ntok
= tok
- insn
->tok
;
2006 input_line_pointer
= old_input_line_pointer
;
2012 get_invisible_operands (TInsn
*insn
)
2014 xtensa_isa isa
= xtensa_default_isa
;
2015 static xtensa_insnbuf slotbuf
= NULL
;
2017 xtensa_opcode opc
= insn
->opcode
;
2018 int slot
, opnd
, fmt_found
;
2022 slotbuf
= xtensa_insnbuf_alloc (isa
);
2024 /* Find format/slot where this can be encoded. */
2027 for (fmt
= 0; fmt
< xtensa_isa_num_formats (isa
); fmt
++)
2029 for (slot
= 0; slot
< xtensa_format_num_slots (isa
, fmt
); slot
++)
2031 if (xtensa_opcode_encode (isa
, fmt
, slot
, slotbuf
, opc
) == 0)
2037 if (fmt_found
) break;
2042 as_bad (_("cannot encode opcode \"%s\""), xtensa_opcode_name (isa
, opc
));
2046 /* First encode all the visible operands
2047 (to deal with shared field operands). */
2048 for (opnd
= 0; opnd
< insn
->ntok
; opnd
++)
2050 if (xtensa_operand_is_visible (isa
, opc
, opnd
) == 1
2051 && (insn
->tok
[opnd
].X_op
== O_register
2052 || insn
->tok
[opnd
].X_op
== O_constant
))
2054 val
= insn
->tok
[opnd
].X_add_number
;
2055 xtensa_operand_encode (isa
, opc
, opnd
, &val
);
2056 xtensa_operand_set_field (isa
, opc
, opnd
, fmt
, slot
, slotbuf
, val
);
2060 /* Then pull out the values for the invisible ones. */
2061 for (opnd
= 0; opnd
< insn
->ntok
; opnd
++)
2063 if (xtensa_operand_is_visible (isa
, opc
, opnd
) == 0)
2065 xtensa_operand_get_field (isa
, opc
, opnd
, fmt
, slot
, slotbuf
, &val
);
2066 xtensa_operand_decode (isa
, opc
, opnd
, &val
);
2067 insn
->tok
[opnd
].X_add_number
= val
;
2068 if (xtensa_operand_is_register (isa
, opc
, opnd
) == 1)
2069 insn
->tok
[opnd
].X_op
= O_register
;
2071 insn
->tok
[opnd
].X_op
= O_constant
;
2080 xg_reverse_shift_count (char **cnt_argp
)
2082 char *cnt_arg
, *new_arg
;
2083 cnt_arg
= *cnt_argp
;
2085 /* replace the argument with "31-(argument)" */
2086 new_arg
= (char *) xmalloc (strlen (cnt_arg
) + 6);
2087 sprintf (new_arg
, "31-(%s)", cnt_arg
);
2090 *cnt_argp
= new_arg
;
2094 /* If "arg" is a constant expression, return non-zero with the value
2098 xg_arg_is_constant (char *arg
, offsetT
*valp
)
2101 char *save_ptr
= input_line_pointer
;
2103 input_line_pointer
= arg
;
2105 input_line_pointer
= save_ptr
;
2107 if (exp
.X_op
== O_constant
)
2109 *valp
= exp
.X_add_number
;
2118 xg_replace_opname (char **popname
, char *newop
)
2121 *popname
= (char *) xmalloc (strlen (newop
) + 1);
2122 strcpy (*popname
, newop
);
2127 xg_check_num_args (int *pnum_args
,
2132 int num_args
= *pnum_args
;
2134 if (num_args
< expected_num
)
2136 as_bad (_("not enough operands (%d) for '%s'; expected %d"),
2137 num_args
, opname
, expected_num
);
2141 if (num_args
> expected_num
)
2143 as_warn (_("too many operands (%d) for '%s'; expected %d"),
2144 num_args
, opname
, expected_num
);
2145 while (num_args
-- > expected_num
)
2147 free (arg_strings
[num_args
]);
2148 arg_strings
[num_args
] = 0;
2150 *pnum_args
= expected_num
;
2158 /* If the register is not specified as part of the opcode,
2159 then get it from the operand and move it to the opcode. */
2162 xg_translate_sysreg_op (char **popname
, int *pnum_args
, char **arg_strings
)
2164 xtensa_isa isa
= xtensa_default_isa
;
2166 char *opname
, *new_opname
;
2167 const char *sr_name
;
2168 int is_user
, is_write
;
2173 is_user
= (opname
[1] == 'u');
2174 is_write
= (opname
[0] == 'w');
2176 /* Opname == [rw]ur or [rwx]sr... */
2178 if (xg_check_num_args (pnum_args
, 2, opname
, arg_strings
))
2181 /* Check if the argument is a symbolic register name. */
2182 sr
= xtensa_sysreg_lookup_name (isa
, arg_strings
[1]);
2183 /* Handle WSR to "INTSET" as a special case. */
2184 if (sr
== XTENSA_UNDEFINED
&& is_write
&& !is_user
2185 && !strcasecmp (arg_strings
[1], "intset"))
2186 sr
= xtensa_sysreg_lookup_name (isa
, "interrupt");
2187 if (sr
== XTENSA_UNDEFINED
2188 || (xtensa_sysreg_is_user (isa
, sr
) == 1) != is_user
)
2190 /* Maybe it's a register number.... */
2192 if (!xg_arg_is_constant (arg_strings
[1], &val
))
2194 as_bad (_("invalid register '%s' for '%s' instruction"),
2195 arg_strings
[1], opname
);
2198 sr
= xtensa_sysreg_lookup (isa
, val
, is_user
);
2199 if (sr
== XTENSA_UNDEFINED
)
2201 as_bad (_("invalid register number (%ld) for '%s' instruction"),
2202 (long) val
, opname
);
2207 /* Remove the last argument, which is now part of the opcode. */
2208 free (arg_strings
[1]);
2212 /* Translate the opcode. */
2213 sr_name
= xtensa_sysreg_name (isa
, sr
);
2214 /* Another special case for "WSR.INTSET".... */
2215 if (is_write
&& !is_user
&& !strcasecmp ("interrupt", sr_name
))
2217 new_opname
= (char *) xmalloc (strlen (sr_name
) + 6);
2218 sprintf (new_opname
, "%s.%s", *popname
, sr_name
);
2220 *popname
= new_opname
;
2227 xtensa_translate_old_userreg_ops (char **popname
)
2229 xtensa_isa isa
= xtensa_default_isa
;
2231 char *opname
, *new_opname
;
2232 const char *sr_name
;
2233 bfd_boolean has_underbar
= FALSE
;
2236 if (opname
[0] == '_')
2238 has_underbar
= TRUE
;
2242 sr
= xtensa_sysreg_lookup_name (isa
, opname
+ 1);
2243 if (sr
!= XTENSA_UNDEFINED
)
2245 /* The new default name ("nnn") is different from the old default
2246 name ("URnnn"). The old default is handled below, and we don't
2247 want to recognize [RW]nnn, so do nothing if the name is the (new)
2249 static char namebuf
[10];
2250 sprintf (namebuf
, "%d", xtensa_sysreg_number (isa
, sr
));
2251 if (strcmp (namebuf
, opname
+ 1) == 0)
2259 /* Only continue if the reg name is "URnnn". */
2260 if (opname
[1] != 'u' || opname
[2] != 'r')
2262 val
= strtoul (opname
+ 3, &end
, 10);
2266 sr
= xtensa_sysreg_lookup (isa
, val
, 1);
2267 if (sr
== XTENSA_UNDEFINED
)
2269 as_bad (_("invalid register number (%ld) for '%s'"),
2270 (long) val
, opname
);
2275 /* Translate the opcode. */
2276 sr_name
= xtensa_sysreg_name (isa
, sr
);
2277 new_opname
= (char *) xmalloc (strlen (sr_name
) + 6);
2278 sprintf (new_opname
, "%s%cur.%s", (has_underbar
? "_" : ""),
2279 opname
[0], sr_name
);
2281 *popname
= new_opname
;
2288 xtensa_translate_zero_immed (char *old_op
,
2298 assert (opname
[0] != '_');
2300 if (strcmp (opname
, old_op
) != 0)
2303 if (xg_check_num_args (pnum_args
, 3, opname
, arg_strings
))
2305 if (xg_arg_is_constant (arg_strings
[1], &val
) && val
== 0)
2307 xg_replace_opname (popname
, new_op
);
2308 free (arg_strings
[1]);
2309 arg_strings
[1] = arg_strings
[2];
2318 /* If the instruction is an idiom (i.e., a built-in macro), translate it.
2319 Returns non-zero if an error was found. */
2322 xg_translate_idioms (char **popname
, int *pnum_args
, char **arg_strings
)
2324 char *opname
= *popname
;
2325 bfd_boolean has_underbar
= FALSE
;
2329 has_underbar
= TRUE
;
2333 if (strcmp (opname
, "mov") == 0)
2335 if (use_transform () && !has_underbar
&& density_supported
)
2336 xg_replace_opname (popname
, "mov.n");
2339 if (xg_check_num_args (pnum_args
, 2, opname
, arg_strings
))
2341 xg_replace_opname (popname
, (has_underbar
? "_or" : "or"));
2342 arg_strings
[2] = (char *) xmalloc (strlen (arg_strings
[1]) + 1);
2343 strcpy (arg_strings
[2], arg_strings
[1]);
2349 if (strcmp (opname
, "bbsi.l") == 0)
2351 if (xg_check_num_args (pnum_args
, 3, opname
, arg_strings
))
2353 xg_replace_opname (popname
, (has_underbar
? "_bbsi" : "bbsi"));
2354 if (target_big_endian
)
2355 xg_reverse_shift_count (&arg_strings
[1]);
2359 if (strcmp (opname
, "bbci.l") == 0)
2361 if (xg_check_num_args (pnum_args
, 3, opname
, arg_strings
))
2363 xg_replace_opname (popname
, (has_underbar
? "_bbci" : "bbci"));
2364 if (target_big_endian
)
2365 xg_reverse_shift_count (&arg_strings
[1]);
2369 /* Don't do anything special with NOPs inside FLIX instructions. They
2370 are handled elsewhere. Real NOP instructions are always available
2371 in configurations with FLIX, so this should never be an issue but
2372 check for it anyway. */
2373 if (!cur_vinsn
.inside_bundle
&& xtensa_nop_opcode
== XTENSA_UNDEFINED
2374 && strcmp (opname
, "nop") == 0)
2376 if (use_transform () && !has_underbar
&& density_supported
)
2377 xg_replace_opname (popname
, "nop.n");
2380 if (xg_check_num_args (pnum_args
, 0, opname
, arg_strings
))
2382 xg_replace_opname (popname
, (has_underbar
? "_or" : "or"));
2383 arg_strings
[0] = (char *) xmalloc (3);
2384 arg_strings
[1] = (char *) xmalloc (3);
2385 arg_strings
[2] = (char *) xmalloc (3);
2386 strcpy (arg_strings
[0], "a1");
2387 strcpy (arg_strings
[1], "a1");
2388 strcpy (arg_strings
[2], "a1");
2394 /* Recognize [RW]UR and [RWX]SR. */
2395 if ((((opname
[0] == 'r' || opname
[0] == 'w')
2396 && (opname
[1] == 'u' || opname
[1] == 's'))
2397 || (opname
[0] == 'x' && opname
[1] == 's'))
2399 && opname
[3] == '\0')
2400 return xg_translate_sysreg_op (popname
, pnum_args
, arg_strings
);
2402 /* Backward compatibility for RUR and WUR: Recognize [RW]UR<nnn> and
2403 [RW]<name> if <name> is the non-default name of a user register. */
2404 if ((opname
[0] == 'r' || opname
[0] == 'w')
2405 && xtensa_opcode_lookup (xtensa_default_isa
, opname
) == XTENSA_UNDEFINED
)
2406 return xtensa_translate_old_userreg_ops (popname
);
2408 /* Relax branches that don't allow comparisons against an immediate value
2409 of zero to the corresponding branches with implicit zero immediates. */
2410 if (!has_underbar
&& use_transform ())
2412 if (xtensa_translate_zero_immed ("bnei", "bnez", popname
,
2413 pnum_args
, arg_strings
))
2416 if (xtensa_translate_zero_immed ("beqi", "beqz", popname
,
2417 pnum_args
, arg_strings
))
2420 if (xtensa_translate_zero_immed ("bgei", "bgez", popname
,
2421 pnum_args
, arg_strings
))
2424 if (xtensa_translate_zero_immed ("blti", "bltz", popname
,
2425 pnum_args
, arg_strings
))
2433 /* Functions for dealing with the Xtensa ISA. */
2435 /* Currently the assembler only allows us to use a single target per
2436 fragment. Because of this, only one operand for a given
2437 instruction may be symbolic. If there is a PC-relative operand,
2438 the last one is chosen. Otherwise, the result is the number of the
2439 last immediate operand, and if there are none of those, we fail and
2443 get_relaxable_immed (xtensa_opcode opcode
)
2445 int last_immed
= -1;
2448 if (opcode
== XTENSA_UNDEFINED
)
2451 noperands
= xtensa_opcode_num_operands (xtensa_default_isa
, opcode
);
2452 for (opi
= noperands
- 1; opi
>= 0; opi
--)
2454 if (xtensa_operand_is_visible (xtensa_default_isa
, opcode
, opi
) == 0)
2456 if (xtensa_operand_is_PCrelative (xtensa_default_isa
, opcode
, opi
) == 1)
2458 if (last_immed
== -1
2459 && xtensa_operand_is_register (xtensa_default_isa
, opcode
, opi
) == 0)
2466 static xtensa_opcode
2467 get_opcode_from_buf (const char *buf
, int slot
)
2469 static xtensa_insnbuf insnbuf
= NULL
;
2470 static xtensa_insnbuf slotbuf
= NULL
;
2471 xtensa_isa isa
= xtensa_default_isa
;
2476 insnbuf
= xtensa_insnbuf_alloc (isa
);
2477 slotbuf
= xtensa_insnbuf_alloc (isa
);
2480 xtensa_insnbuf_from_chars (isa
, insnbuf
, (const unsigned char *) buf
, 0);
2481 fmt
= xtensa_format_decode (isa
, insnbuf
);
2482 if (fmt
== XTENSA_UNDEFINED
)
2483 return XTENSA_UNDEFINED
;
2485 if (slot
>= xtensa_format_num_slots (isa
, fmt
))
2486 return XTENSA_UNDEFINED
;
2488 xtensa_format_get_slot (isa
, fmt
, slot
, insnbuf
, slotbuf
);
2489 return xtensa_opcode_decode (isa
, fmt
, slot
, slotbuf
);
2493 #ifdef TENSILICA_DEBUG
2495 /* For debugging, print out the mapping of opcode numbers to opcodes. */
2498 xtensa_print_insn_table (void)
2500 int num_opcodes
, num_operands
;
2501 xtensa_opcode opcode
;
2502 xtensa_isa isa
= xtensa_default_isa
;
2504 num_opcodes
= xtensa_isa_num_opcodes (xtensa_default_isa
);
2505 for (opcode
= 0; opcode
< num_opcodes
; opcode
++)
2508 fprintf (stderr
, "%d: %s: ", opcode
, xtensa_opcode_name (isa
, opcode
));
2509 num_operands
= xtensa_opcode_num_operands (isa
, opcode
);
2510 for (opn
= 0; opn
< num_operands
; opn
++)
2512 if (xtensa_operand_is_visible (isa
, opcode
, opn
) == 0)
2514 if (xtensa_operand_is_register (isa
, opcode
, opn
) == 1)
2516 xtensa_regfile opnd_rf
=
2517 xtensa_operand_regfile (isa
, opcode
, opn
);
2518 fprintf (stderr
, "%s ", xtensa_regfile_shortname (isa
, opnd_rf
));
2520 else if (xtensa_operand_is_PCrelative (isa
, opcode
, opn
) == 1)
2521 fputs ("[lLr] ", stderr
);
2523 fputs ("i ", stderr
);
2525 fprintf (stderr
, "\n");
2531 print_vliw_insn (xtensa_insnbuf vbuf
)
2533 xtensa_isa isa
= xtensa_default_isa
;
2534 xtensa_format f
= xtensa_format_decode (isa
, vbuf
);
2535 xtensa_insnbuf sbuf
= xtensa_insnbuf_alloc (isa
);
2538 fprintf (stderr
, "format = %d\n", f
);
2540 for (op
= 0; op
< xtensa_format_num_slots (isa
, f
); op
++)
2542 xtensa_opcode opcode
;
2546 xtensa_format_get_slot (isa
, f
, op
, vbuf
, sbuf
);
2547 opcode
= xtensa_opcode_decode (isa
, f
, op
, sbuf
);
2548 opname
= xtensa_opcode_name (isa
, opcode
);
2550 fprintf (stderr
, "op in slot %i is %s;\n", op
, opname
);
2551 fprintf (stderr
, " operands = ");
2553 operands
< xtensa_opcode_num_operands (isa
, opcode
);
2557 if (xtensa_operand_is_visible (isa
, opcode
, operands
) == 0)
2559 xtensa_operand_get_field (isa
, opcode
, operands
, f
, op
, sbuf
, &val
);
2560 xtensa_operand_decode (isa
, opcode
, operands
, &val
);
2561 fprintf (stderr
, "%d ", val
);
2563 fprintf (stderr
, "\n");
2565 xtensa_insnbuf_free (isa
, sbuf
);
2568 #endif /* TENSILICA_DEBUG */
2572 is_direct_call_opcode (xtensa_opcode opcode
)
2574 xtensa_isa isa
= xtensa_default_isa
;
2575 int n
, num_operands
;
2577 if (xtensa_opcode_is_call (isa
, opcode
) != 1)
2580 num_operands
= xtensa_opcode_num_operands (isa
, opcode
);
2581 for (n
= 0; n
< num_operands
; n
++)
2583 if (xtensa_operand_is_register (isa
, opcode
, n
) == 0
2584 && xtensa_operand_is_PCrelative (isa
, opcode
, n
) == 1)
2591 /* Convert from BFD relocation type code to slot and operand number.
2592 Returns non-zero on failure. */
2595 decode_reloc (bfd_reloc_code_real_type reloc
, int *slot
, bfd_boolean
*is_alt
)
2597 if (reloc
>= BFD_RELOC_XTENSA_SLOT0_OP
2598 && reloc
<= BFD_RELOC_XTENSA_SLOT14_OP
)
2600 *slot
= reloc
- BFD_RELOC_XTENSA_SLOT0_OP
;
2603 else if (reloc
>= BFD_RELOC_XTENSA_SLOT0_ALT
2604 && reloc
<= BFD_RELOC_XTENSA_SLOT14_ALT
)
2606 *slot
= reloc
- BFD_RELOC_XTENSA_SLOT0_ALT
;
2616 /* Convert from slot number to BFD relocation type code for the
2617 standard PC-relative relocations. Return BFD_RELOC_NONE on
2620 static bfd_reloc_code_real_type
2621 encode_reloc (int slot
)
2623 if (slot
< 0 || slot
> 14)
2624 return BFD_RELOC_NONE
;
2626 return BFD_RELOC_XTENSA_SLOT0_OP
+ slot
;
2630 /* Convert from slot numbers to BFD relocation type code for the
2631 "alternate" relocations. Return BFD_RELOC_NONE on failure. */
2633 static bfd_reloc_code_real_type
2634 encode_alt_reloc (int slot
)
2636 if (slot
< 0 || slot
> 14)
2637 return BFD_RELOC_NONE
;
2639 return BFD_RELOC_XTENSA_SLOT0_ALT
+ slot
;
2644 xtensa_insnbuf_set_operand (xtensa_insnbuf slotbuf
,
2647 xtensa_opcode opcode
,
2653 uint32 valbuf
= value
;
2655 if (xtensa_operand_encode (xtensa_default_isa
, opcode
, operand
, &valbuf
))
2657 if (xtensa_operand_is_PCrelative (xtensa_default_isa
, opcode
, operand
)
2659 as_bad_where ((char *) file
, line
,
2660 _("operand %d of '%s' has out of range value '%u'"),
2662 xtensa_opcode_name (xtensa_default_isa
, opcode
),
2665 as_bad_where ((char *) file
, line
,
2666 _("operand %d of '%s' has invalid value '%u'"),
2668 xtensa_opcode_name (xtensa_default_isa
, opcode
),
2673 xtensa_operand_set_field (xtensa_default_isa
, opcode
, operand
, fmt
, slot
,
2679 xtensa_insnbuf_get_operand (xtensa_insnbuf slotbuf
,
2682 xtensa_opcode opcode
,
2686 (void) xtensa_operand_get_field (xtensa_default_isa
, opcode
, opnum
,
2687 fmt
, slot
, slotbuf
, &val
);
2688 (void) xtensa_operand_decode (xtensa_default_isa
, opcode
, opnum
, &val
);
2693 /* Checks for rules from xtensa-relax tables. */
2695 /* The routine xg_instruction_matches_option_term must return TRUE
2696 when a given option term is true. The meaning of all of the option
2697 terms is given interpretation by this function. This is needed when
2698 an option depends on the state of a directive, but there are no such
2699 options in use right now. */
2702 xg_instruction_matches_option_term (TInsn
*insn ATTRIBUTE_UNUSED
,
2703 const ReqOrOption
*option
)
2705 if (strcmp (option
->option_name
, "realnop") == 0
2706 || strncmp (option
->option_name
, "IsaUse", 6) == 0)
2708 /* These conditions were evaluated statically when building the
2709 relaxation table. There's no need to reevaluate them now. */
2714 as_fatal (_("internal error: unknown option name '%s'"),
2715 option
->option_name
);
2721 xg_instruction_matches_or_options (TInsn
*insn
,
2722 const ReqOrOptionList
*or_option
)
2724 const ReqOrOption
*option
;
2725 /* Must match each of the AND terms. */
2726 for (option
= or_option
; option
!= NULL
; option
= option
->next
)
2728 if (xg_instruction_matches_option_term (insn
, option
))
2736 xg_instruction_matches_options (TInsn
*insn
, const ReqOptionList
*options
)
2738 const ReqOption
*req_options
;
2739 /* Must match each of the AND terms. */
2740 for (req_options
= options
;
2741 req_options
!= NULL
;
2742 req_options
= req_options
->next
)
2744 /* Must match one of the OR clauses. */
2745 if (!xg_instruction_matches_or_options (insn
,
2746 req_options
->or_option_terms
))
2753 /* Return the transition rule that matches or NULL if none matches. */
2756 xg_instruction_matches_rule (TInsn
*insn
, TransitionRule
*rule
)
2758 PreconditionList
*condition_l
;
2760 if (rule
->opcode
!= insn
->opcode
)
2763 for (condition_l
= rule
->conditions
;
2764 condition_l
!= NULL
;
2765 condition_l
= condition_l
->next
)
2769 Precondition
*cond
= condition_l
->precond
;
2774 /* The expression must be the constant. */
2775 assert (cond
->op_num
< insn
->ntok
);
2776 exp1
= &insn
->tok
[cond
->op_num
];
2777 if (expr_is_const (exp1
))
2782 if (get_expr_const (exp1
) != cond
->op_data
)
2786 if (get_expr_const (exp1
) == cond
->op_data
)
2793 else if (expr_is_register (exp1
))
2798 if (get_expr_register (exp1
) != cond
->op_data
)
2802 if (get_expr_register (exp1
) == cond
->op_data
)
2814 assert (cond
->op_num
< insn
->ntok
);
2815 assert (cond
->op_data
< insn
->ntok
);
2816 exp1
= &insn
->tok
[cond
->op_num
];
2817 exp2
= &insn
->tok
[cond
->op_data
];
2822 if (!expr_is_equal (exp1
, exp2
))
2826 if (expr_is_equal (exp1
, exp2
))
2838 if (!xg_instruction_matches_options (insn
, rule
->options
))
2846 transition_rule_cmp (const TransitionRule
*a
, const TransitionRule
*b
)
2848 bfd_boolean a_greater
= FALSE
;
2849 bfd_boolean b_greater
= FALSE
;
2851 ReqOptionList
*l_a
= a
->options
;
2852 ReqOptionList
*l_b
= b
->options
;
2854 /* We only care if they both are the same except for
2855 a const16 vs. an l32r. */
2857 while (l_a
&& l_b
&& ((l_a
->next
== NULL
) == (l_b
->next
== NULL
)))
2859 ReqOrOptionList
*l_or_a
= l_a
->or_option_terms
;
2860 ReqOrOptionList
*l_or_b
= l_b
->or_option_terms
;
2861 while (l_or_a
&& l_or_b
&& ((l_a
->next
== NULL
) == (l_b
->next
== NULL
)))
2863 if (l_or_a
->is_true
!= l_or_b
->is_true
)
2865 if (strcmp (l_or_a
->option_name
, l_or_b
->option_name
) != 0)
2867 /* This is the case we care about. */
2868 if (strcmp (l_or_a
->option_name
, "IsaUseConst16") == 0
2869 && strcmp (l_or_b
->option_name
, "IsaUseL32R") == 0)
2876 else if (strcmp (l_or_a
->option_name
, "IsaUseL32R") == 0
2877 && strcmp (l_or_b
->option_name
, "IsaUseConst16") == 0)
2887 l_or_a
= l_or_a
->next
;
2888 l_or_b
= l_or_b
->next
;
2890 if (l_or_a
|| l_or_b
)
2899 /* Incomparable if the substitution was used differently in two cases. */
2900 if (a_greater
&& b_greater
)
2912 static TransitionRule
*
2913 xg_instruction_match (TInsn
*insn
)
2915 TransitionTable
*table
= xg_build_simplify_table (&transition_rule_cmp
);
2917 assert (insn
->opcode
< table
->num_opcodes
);
2919 /* Walk through all of the possible transitions. */
2920 for (l
= table
->table
[insn
->opcode
]; l
!= NULL
; l
= l
->next
)
2922 TransitionRule
*rule
= l
->rule
;
2923 if (xg_instruction_matches_rule (insn
, rule
))
2930 /* Various Other Internal Functions. */
2933 is_unique_insn_expansion (TransitionRule
*r
)
2935 if (!r
->to_instr
|| r
->to_instr
->next
!= NULL
)
2937 if (r
->to_instr
->typ
!= INSTR_INSTR
)
2943 /* Check if there is exactly one relaxation for INSN that converts it to
2944 another instruction of equal or larger size. If so, and if TARG is
2945 non-null, go ahead and generate the relaxed instruction into TARG. If
2946 NARROW_ONLY is true, then only consider relaxations that widen a narrow
2947 instruction, i.e., ignore relaxations that convert to an instruction of
2948 equal size. In some contexts where this function is used, only
2949 a single widening is allowed and the NARROW_ONLY argument is used to
2950 exclude cases like ADDI being "widened" to an ADDMI, which may
2951 later be relaxed to an ADDMI/ADDI pair. */
2954 xg_is_single_relaxable_insn (TInsn
*insn
, TInsn
*targ
, bfd_boolean narrow_only
)
2956 TransitionTable
*table
= xg_build_widen_table (&transition_rule_cmp
);
2958 TransitionRule
*match
= 0;
2960 assert (insn
->insn_type
== ITYPE_INSN
);
2961 assert (insn
->opcode
< table
->num_opcodes
);
2963 for (l
= table
->table
[insn
->opcode
]; l
!= NULL
; l
= l
->next
)
2965 TransitionRule
*rule
= l
->rule
;
2967 if (xg_instruction_matches_rule (insn
, rule
)
2968 && is_unique_insn_expansion (rule
)
2969 && (xg_get_single_size (insn
->opcode
) + (narrow_only
? 1 : 0)
2970 <= xg_get_single_size (rule
->to_instr
->opcode
)))
2981 xg_build_to_insn (targ
, insn
, match
->to_instr
);
2986 /* Return the maximum number of bytes this opcode can expand to. */
2989 xg_get_max_insn_widen_size (xtensa_opcode opcode
)
2991 TransitionTable
*table
= xg_build_widen_table (&transition_rule_cmp
);
2993 int max_size
= xg_get_single_size (opcode
);
2995 assert (opcode
< table
->num_opcodes
);
2997 for (l
= table
->table
[opcode
]; l
!= NULL
; l
= l
->next
)
2999 TransitionRule
*rule
= l
->rule
;
3000 BuildInstr
*build_list
;
3005 build_list
= rule
->to_instr
;
3006 if (is_unique_insn_expansion (rule
))
3008 assert (build_list
->typ
== INSTR_INSTR
);
3009 this_size
= xg_get_max_insn_widen_size (build_list
->opcode
);
3012 for (; build_list
!= NULL
; build_list
= build_list
->next
)
3014 switch (build_list
->typ
)
3017 this_size
+= xg_get_single_size (build_list
->opcode
);
3019 case INSTR_LITERAL_DEF
:
3020 case INSTR_LABEL_DEF
:
3025 if (this_size
> max_size
)
3026 max_size
= this_size
;
3032 /* Return the maximum number of literal bytes this opcode can generate. */
3035 xg_get_max_insn_widen_literal_size (xtensa_opcode opcode
)
3037 TransitionTable
*table
= xg_build_widen_table (&transition_rule_cmp
);
3041 assert (opcode
< table
->num_opcodes
);
3043 for (l
= table
->table
[opcode
]; l
!= NULL
; l
= l
->next
)
3045 TransitionRule
*rule
= l
->rule
;
3046 BuildInstr
*build_list
;
3051 build_list
= rule
->to_instr
;
3052 if (is_unique_insn_expansion (rule
))
3054 assert (build_list
->typ
== INSTR_INSTR
);
3055 this_size
= xg_get_max_insn_widen_literal_size (build_list
->opcode
);
3058 for (; build_list
!= NULL
; build_list
= build_list
->next
)
3060 switch (build_list
->typ
)
3062 case INSTR_LITERAL_DEF
:
3063 /* Hard-coded 4-byte literal. */
3067 case INSTR_LABEL_DEF
:
3072 if (this_size
> max_size
)
3073 max_size
= this_size
;
3080 xg_is_relaxable_insn (TInsn
*insn
, int lateral_steps
)
3082 int steps_taken
= 0;
3083 TransitionTable
*table
= xg_build_widen_table (&transition_rule_cmp
);
3086 assert (insn
->insn_type
== ITYPE_INSN
);
3087 assert (insn
->opcode
< table
->num_opcodes
);
3089 for (l
= table
->table
[insn
->opcode
]; l
!= NULL
; l
= l
->next
)
3091 TransitionRule
*rule
= l
->rule
;
3093 if (xg_instruction_matches_rule (insn
, rule
))
3095 if (steps_taken
== lateral_steps
)
3105 get_special_literal_symbol (void)
3107 static symbolS
*sym
= NULL
;
3110 sym
= symbol_find_or_make ("SPECIAL_LITERAL0\001");
3116 get_special_label_symbol (void)
3118 static symbolS
*sym
= NULL
;
3121 sym
= symbol_find_or_make ("SPECIAL_LABEL0\001");
3127 xg_valid_literal_expression (const expressionS
*exp
)
3145 /* This will check to see if the value can be converted into the
3146 operand type. It will return TRUE if it does not fit. */
3149 xg_check_operand (int32 value
, xtensa_opcode opcode
, int operand
)
3151 uint32 valbuf
= value
;
3152 if (xtensa_operand_encode (xtensa_default_isa
, opcode
, operand
, &valbuf
))
3158 /* Assumes: All immeds are constants. Check that all constants fit
3159 into their immeds; return FALSE if not. */
3162 xg_immeds_fit (const TInsn
*insn
)
3164 xtensa_isa isa
= xtensa_default_isa
;
3168 assert (insn
->insn_type
== ITYPE_INSN
);
3169 for (i
= 0; i
< n
; ++i
)
3171 const expressionS
*expr
= &insn
->tok
[i
];
3172 if (xtensa_operand_is_register (isa
, insn
->opcode
, i
) == 1)
3179 if (xg_check_operand (expr
->X_add_number
, insn
->opcode
, i
))
3184 /* The symbol should have a fixup associated with it. */
3193 /* This should only be called after we have an initial
3194 estimate of the addresses. */
3197 xg_symbolic_immeds_fit (const TInsn
*insn
,
3203 xtensa_isa isa
= xtensa_default_isa
;
3211 assert (insn
->insn_type
== ITYPE_INSN
);
3213 for (i
= 0; i
< n
; ++i
)
3215 const expressionS
*expr
= &insn
->tok
[i
];
3216 if (xtensa_operand_is_register (isa
, insn
->opcode
, i
) == 1)
3223 if (xg_check_operand (expr
->X_add_number
, insn
->opcode
, i
))
3229 /* Check for the worst case. */
3230 if (xg_check_operand (0xffff, insn
->opcode
, i
))
3235 /* We only allow symbols for PC-relative references.
3236 If pc_frag == 0, then we don't have frag locations yet. */
3238 || xtensa_operand_is_PCrelative (isa
, insn
->opcode
, i
) == 0)
3241 /* If it is a weak symbol or a symbol in a different section,
3242 it cannot be known to fit at assembly time. */
3243 if (S_IS_WEAK (expr
->X_add_symbol
)
3244 || S_GET_SEGMENT (expr
->X_add_symbol
) != pc_seg
)
3246 /* For a direct call with --no-longcalls, be optimistic and
3247 assume it will be in range. If the symbol is weak and
3248 undefined, it may remain undefined at link-time, in which
3249 case it will have a zero value and almost certainly be out
3250 of range for a direct call; thus, relax for undefined weak
3251 symbols even if longcalls is not enabled. */
3252 if (is_direct_call_opcode (insn
->opcode
)
3253 && ! pc_frag
->tc_frag_data
.use_longcalls
3254 && (! S_IS_WEAK (expr
->X_add_symbol
)
3255 || S_IS_DEFINED (expr
->X_add_symbol
)))
3261 symbolP
= expr
->X_add_symbol
;
3262 sym_frag
= symbol_get_frag (symbolP
);
3263 target
= S_GET_VALUE (symbolP
) + expr
->X_add_number
;
3264 pc
= pc_frag
->fr_address
+ pc_offset
;
3266 /* If frag has yet to be reached on this pass, assume it
3267 will move by STRETCH just as we did. If this is not so,
3268 it will be because some frag between grows, and that will
3269 force another pass. Beware zero-length frags. There
3270 should be a faster way to do this. */
3273 && sym_frag
->relax_marker
!= pc_frag
->relax_marker
3274 && S_GET_SEGMENT (symbolP
) == pc_seg
)
3279 new_offset
= target
;
3280 xtensa_operand_do_reloc (isa
, insn
->opcode
, i
, &new_offset
, pc
);
3281 if (xg_check_operand (new_offset
, insn
->opcode
, i
))
3286 /* The symbol should have a fixup associated with it. */
3295 /* Return TRUE on success. */
3298 xg_build_to_insn (TInsn
*targ
, TInsn
*insn
, BuildInstr
*bi
)
3304 targ
->debug_line
= insn
->debug_line
;
3305 targ
->loc_directive_seen
= insn
->loc_directive_seen
;
3310 targ
->opcode
= bi
->opcode
;
3311 targ
->insn_type
= ITYPE_INSN
;
3312 targ
->is_specific_opcode
= FALSE
;
3314 for (; op
!= NULL
; op
= op
->next
)
3316 int op_num
= op
->op_num
;
3317 int op_data
= op
->op_data
;
3319 assert (op
->op_num
< MAX_INSN_ARGS
);
3321 if (targ
->ntok
<= op_num
)
3322 targ
->ntok
= op_num
+ 1;
3327 set_expr_const (&targ
->tok
[op_num
], op_data
);
3330 assert (op_data
< insn
->ntok
);
3331 copy_expr (&targ
->tok
[op_num
], &insn
->tok
[op_data
]);
3334 sym
= get_special_literal_symbol ();
3335 set_expr_symbol_offset (&targ
->tok
[op_num
], sym
, 0);
3338 sym
= get_special_label_symbol ();
3339 set_expr_symbol_offset (&targ
->tok
[op_num
], sym
, 0);
3341 case OP_OPERAND_HI16U
:
3342 case OP_OPERAND_LOW16U
:
3343 assert (op_data
< insn
->ntok
);
3344 if (expr_is_const (&insn
->tok
[op_data
]))
3347 copy_expr (&targ
->tok
[op_num
], &insn
->tok
[op_data
]);
3348 val
= xg_apply_userdef_op_fn (op
->typ
,
3351 targ
->tok
[op_num
].X_add_number
= val
;
3355 /* For const16 we can create relocations for these. */
3356 if (targ
->opcode
== XTENSA_UNDEFINED
3357 || (targ
->opcode
!= xtensa_const16_opcode
))
3359 assert (op_data
< insn
->ntok
);
3360 /* Need to build a O_lo16 or O_hi16. */
3361 copy_expr (&targ
->tok
[op_num
], &insn
->tok
[op_data
]);
3362 if (targ
->tok
[op_num
].X_op
== O_symbol
)
3364 if (op
->typ
== OP_OPERAND_HI16U
)
3365 targ
->tok
[op_num
].X_op
= O_hi16
;
3366 else if (op
->typ
== OP_OPERAND_LOW16U
)
3367 targ
->tok
[op_num
].X_op
= O_lo16
;
3374 /* currently handles:
3377 OP_OPERAND_F32MINUS */
3378 if (xg_has_userdef_op_fn (op
->typ
))
3380 assert (op_data
< insn
->ntok
);
3381 if (expr_is_const (&insn
->tok
[op_data
]))
3384 copy_expr (&targ
->tok
[op_num
], &insn
->tok
[op_data
]);
3385 val
= xg_apply_userdef_op_fn (op
->typ
,
3388 targ
->tok
[op_num
].X_add_number
= val
;
3391 return FALSE
; /* We cannot use a relocation for this. */
3400 case INSTR_LITERAL_DEF
:
3402 targ
->opcode
= XTENSA_UNDEFINED
;
3403 targ
->insn_type
= ITYPE_LITERAL
;
3404 targ
->is_specific_opcode
= FALSE
;
3405 for (; op
!= NULL
; op
= op
->next
)
3407 int op_num
= op
->op_num
;
3408 int op_data
= op
->op_data
;
3409 assert (op
->op_num
< MAX_INSN_ARGS
);
3411 if (targ
->ntok
<= op_num
)
3412 targ
->ntok
= op_num
+ 1;
3417 assert (op_data
< insn
->ntok
);
3418 /* We can only pass resolvable literals through. */
3419 if (!xg_valid_literal_expression (&insn
->tok
[op_data
]))
3421 copy_expr (&targ
->tok
[op_num
], &insn
->tok
[op_data
]);
3433 case INSTR_LABEL_DEF
:
3435 targ
->opcode
= XTENSA_UNDEFINED
;
3436 targ
->insn_type
= ITYPE_LABEL
;
3437 targ
->is_specific_opcode
= FALSE
;
3438 /* Literal with no ops is a label? */
3439 assert (op
== NULL
);
3450 /* Return TRUE on success. */
3453 xg_build_to_stack (IStack
*istack
, TInsn
*insn
, BuildInstr
*bi
)
3455 for (; bi
!= NULL
; bi
= bi
->next
)
3457 TInsn
*next_insn
= istack_push_space (istack
);
3459 if (!xg_build_to_insn (next_insn
, insn
, bi
))
3466 /* Return TRUE on valid expansion. */
3469 xg_expand_to_stack (IStack
*istack
, TInsn
*insn
, int lateral_steps
)
3471 int stack_size
= istack
->ninsn
;
3472 int steps_taken
= 0;
3473 TransitionTable
*table
= xg_build_widen_table (&transition_rule_cmp
);
3476 assert (insn
->insn_type
== ITYPE_INSN
);
3477 assert (insn
->opcode
< table
->num_opcodes
);
3479 for (l
= table
->table
[insn
->opcode
]; l
!= NULL
; l
= l
->next
)
3481 TransitionRule
*rule
= l
->rule
;
3483 if (xg_instruction_matches_rule (insn
, rule
))
3485 if (lateral_steps
== steps_taken
)
3489 /* This is it. Expand the rule to the stack. */
3490 if (!xg_build_to_stack (istack
, insn
, rule
->to_instr
))
3493 /* Check to see if it fits. */
3494 for (i
= stack_size
; i
< istack
->ninsn
; i
++)
3496 TInsn
*insn
= &istack
->insn
[i
];
3498 if (insn
->insn_type
== ITYPE_INSN
3499 && !tinsn_has_symbolic_operands (insn
)
3500 && !xg_immeds_fit (insn
))
3502 istack
->ninsn
= stack_size
;
3515 /* Relax the assembly instruction at least "min_steps".
3516 Return the number of steps taken.
3518 For relaxation to correctly terminate, every relaxation chain must
3519 terminate in one of two ways:
3521 1. If the chain from one instruction to the next consists entirely of
3522 single instructions, then the chain *must* handle all possible
3523 immediates without failing. It must not ever fail because an
3524 immediate is out of range. The MOVI.N -> MOVI -> L32R relaxation
3525 chain is one example. L32R loads 32 bits, and there cannot be an
3526 immediate larger than 32 bits, so it satisfies this condition.
3527 Single instruction relaxation chains are as defined by
3528 xg_is_single_relaxable_instruction.
3530 2. Otherwise, the chain must end in a multi-instruction expansion: e.g.,
3531 BNEZ.N -> BNEZ -> BNEZ.W15 -> BENZ.N/J
3533 Strictly speaking, in most cases you can violate condition 1 and be OK
3534 -- in particular when the last two instructions have the same single
3535 size. But nevertheless, you should guarantee the above two conditions.
3537 We could fix this so that single-instruction expansions correctly
3538 terminate when they can't handle the range, but the error messages are
3539 worse, and it actually turns out that in every case but one (18-bit wide
3540 branches), you need a multi-instruction expansion to get the full range
3541 anyway. And because 18-bit branches are handled identically to 15-bit
3542 branches, there isn't any point in changing it. */
3545 xg_assembly_relax (IStack
*istack
,
3548 fragS
*pc_frag
, /* if pc_frag == 0, not pc-relative */
3549 offsetT pc_offset
, /* offset in fragment */
3550 int min_steps
, /* minimum conversion steps */
3551 long stretch
) /* number of bytes stretched so far */
3553 int steps_taken
= 0;
3555 /* Some of its immeds don't fit. Try to build a relaxed version.
3556 This may go through a couple of stages of single instruction
3557 transformations before we get there. */
3559 TInsn single_target
;
3561 int lateral_steps
= 0;
3562 int istack_size
= istack
->ninsn
;
3564 if (xg_symbolic_immeds_fit (insn
, pc_seg
, pc_frag
, pc_offset
, stretch
)
3565 && steps_taken
>= min_steps
)
3567 istack_push (istack
, insn
);
3570 current_insn
= *insn
;
3572 /* Walk through all of the single instruction expansions. */
3573 while (xg_is_single_relaxable_insn (¤t_insn
, &single_target
, FALSE
))
3576 if (xg_symbolic_immeds_fit (&single_target
, pc_seg
, pc_frag
, pc_offset
,
3579 if (steps_taken
>= min_steps
)
3581 istack_push (istack
, &single_target
);
3585 current_insn
= single_target
;
3588 /* Now check for a multi-instruction expansion. */
3589 while (xg_is_relaxable_insn (¤t_insn
, lateral_steps
))
3591 if (xg_symbolic_immeds_fit (¤t_insn
, pc_seg
, pc_frag
, pc_offset
,
3594 if (steps_taken
>= min_steps
)
3596 istack_push (istack
, ¤t_insn
);
3601 if (xg_expand_to_stack (istack
, ¤t_insn
, lateral_steps
))
3603 if (steps_taken
>= min_steps
)
3607 istack
->ninsn
= istack_size
;
3610 /* It's not going to work -- use the original. */
3611 istack_push (istack
, insn
);
3617 xg_finish_frag (char *last_insn
,
3618 enum xtensa_relax_statesE frag_state
,
3619 enum xtensa_relax_statesE slot0_state
,
3621 bfd_boolean is_insn
)
3623 /* Finish off this fragment so that it has at LEAST the desired
3624 max_growth. If it doesn't fit in this fragment, close this one
3625 and start a new one. In either case, return a pointer to the
3626 beginning of the growth area. */
3630 frag_grow (max_growth
);
3631 old_frag
= frag_now
;
3633 frag_now
->fr_opcode
= last_insn
;
3635 frag_now
->tc_frag_data
.is_insn
= TRUE
;
3637 frag_var (rs_machine_dependent
, max_growth
, max_growth
,
3638 frag_state
, frag_now
->fr_symbol
, frag_now
->fr_offset
, last_insn
);
3640 old_frag
->tc_frag_data
.slot_subtypes
[0] = slot0_state
;
3641 xtensa_set_frag_assembly_state (frag_now
);
3643 /* Just to make sure that we did not split it up. */
3644 assert (old_frag
->fr_next
== frag_now
);
3648 /* Return TRUE if the target frag is one of the next non-empty frags. */
3651 is_next_frag_target (const fragS
*fragP
, const fragS
*target
)
3656 for (; fragP
; fragP
= fragP
->fr_next
)
3658 if (fragP
== target
)
3660 if (fragP
->fr_fix
!= 0)
3662 if (fragP
->fr_type
== rs_fill
&& fragP
->fr_offset
!= 0)
3664 if ((fragP
->fr_type
== rs_align
|| fragP
->fr_type
== rs_align_code
)
3665 && ((fragP
->fr_address
% (1 << fragP
->fr_offset
)) != 0))
3667 if (fragP
->fr_type
== rs_space
)
3675 is_branch_jmp_to_next (TInsn
*insn
, fragS
*fragP
)
3677 xtensa_isa isa
= xtensa_default_isa
;
3679 int num_ops
= xtensa_opcode_num_operands (isa
, insn
->opcode
);
3684 if (xtensa_opcode_is_branch (isa
, insn
->opcode
) != 1
3685 && xtensa_opcode_is_jump (isa
, insn
->opcode
) != 1)
3688 for (i
= 0; i
< num_ops
; i
++)
3690 if (xtensa_operand_is_PCrelative (isa
, insn
->opcode
, i
) == 1)
3696 if (target_op
== -1)
3699 if (insn
->ntok
<= target_op
)
3702 if (insn
->tok
[target_op
].X_op
!= O_symbol
)
3705 sym
= insn
->tok
[target_op
].X_add_symbol
;
3709 if (insn
->tok
[target_op
].X_add_number
!= 0)
3712 target_frag
= symbol_get_frag (sym
);
3713 if (target_frag
== NULL
)
3716 if (is_next_frag_target (fragP
->fr_next
, target_frag
)
3717 && S_GET_VALUE (sym
) == target_frag
->fr_address
)
3725 xg_add_branch_and_loop_targets (TInsn
*insn
)
3727 xtensa_isa isa
= xtensa_default_isa
;
3728 int num_ops
= xtensa_opcode_num_operands (isa
, insn
->opcode
);
3730 if (xtensa_opcode_is_loop (isa
, insn
->opcode
) == 1)
3733 if (xtensa_operand_is_PCrelative (isa
, insn
->opcode
, i
) == 1
3734 && insn
->tok
[i
].X_op
== O_symbol
)
3735 symbol_get_tc (insn
->tok
[i
].X_add_symbol
)->is_loop_target
= TRUE
;
3739 if (xtensa_opcode_is_branch (isa
, insn
->opcode
) == 1
3740 || xtensa_opcode_is_loop (isa
, insn
->opcode
) == 1)
3744 for (i
= 0; i
< insn
->ntok
&& i
< num_ops
; i
++)
3746 if (xtensa_operand_is_PCrelative (isa
, insn
->opcode
, i
) == 1
3747 && insn
->tok
[i
].X_op
== O_symbol
)
3749 symbolS
*sym
= insn
->tok
[i
].X_add_symbol
;
3750 symbol_get_tc (sym
)->is_branch_target
= TRUE
;
3751 if (S_IS_DEFINED (sym
))
3752 symbol_get_frag (sym
)->tc_frag_data
.is_branch_target
= TRUE
;
3759 /* Return FALSE if no error. */
3762 xg_build_token_insn (BuildInstr
*instr_spec
, TInsn
*old_insn
, TInsn
*new_insn
)
3767 switch (instr_spec
->typ
)
3770 new_insn
->insn_type
= ITYPE_INSN
;
3771 new_insn
->opcode
= instr_spec
->opcode
;
3773 case INSTR_LITERAL_DEF
:
3774 new_insn
->insn_type
= ITYPE_LITERAL
;
3775 new_insn
->opcode
= XTENSA_UNDEFINED
;
3777 case INSTR_LABEL_DEF
:
3780 new_insn
->is_specific_opcode
= FALSE
;
3781 new_insn
->debug_line
= old_insn
->debug_line
;
3782 new_insn
->loc_directive_seen
= old_insn
->loc_directive_seen
;
3784 for (b_op
= instr_spec
->ops
; b_op
!= NULL
; b_op
= b_op
->next
)
3787 const expressionS
*src_exp
;
3793 /* The expression must be the constant. */
3794 assert (b_op
->op_num
< MAX_INSN_ARGS
);
3795 exp
= &new_insn
->tok
[b_op
->op_num
];
3796 set_expr_const (exp
, b_op
->op_data
);
3800 assert (b_op
->op_num
< MAX_INSN_ARGS
);
3801 assert (b_op
->op_data
< (unsigned) old_insn
->ntok
);
3802 src_exp
= &old_insn
->tok
[b_op
->op_data
];
3803 exp
= &new_insn
->tok
[b_op
->op_num
];
3804 copy_expr (exp
, src_exp
);
3809 as_bad (_("can't handle generation of literal/labels yet"));
3813 as_bad (_("can't handle undefined OP TYPE"));
3818 new_insn
->ntok
= num_ops
;
3823 /* Return TRUE if it was simplified. */
3826 xg_simplify_insn (TInsn
*old_insn
, TInsn
*new_insn
)
3828 TransitionRule
*rule
;
3829 BuildInstr
*insn_spec
;
3831 if (old_insn
->is_specific_opcode
|| !density_supported
)
3834 rule
= xg_instruction_match (old_insn
);
3838 insn_spec
= rule
->to_instr
;
3839 /* There should only be one. */
3840 assert (insn_spec
!= NULL
);
3841 assert (insn_spec
->next
== NULL
);
3842 if (insn_spec
->next
!= NULL
)
3845 xg_build_token_insn (insn_spec
, old_insn
, new_insn
);
3851 /* xg_expand_assembly_insn: (1) Simplify the instruction, i.e., l32i ->
3852 l32i.n. (2) Check the number of operands. (3) Place the instruction
3853 tokens into the stack or relax it and place multiple
3854 instructions/literals onto the stack. Return FALSE if no error. */
3857 xg_expand_assembly_insn (IStack
*istack
, TInsn
*orig_insn
)
3861 bfd_boolean do_expand
;
3863 tinsn_init (&new_insn
);
3865 /* Narrow it if we can. xg_simplify_insn now does all the
3866 appropriate checking (e.g., for the density option). */
3867 if (xg_simplify_insn (orig_insn
, &new_insn
))
3868 orig_insn
= &new_insn
;
3870 noperands
= xtensa_opcode_num_operands (xtensa_default_isa
,
3872 if (orig_insn
->ntok
< noperands
)
3874 as_bad (_("found %d operands for '%s': Expected %d"),
3876 xtensa_opcode_name (xtensa_default_isa
, orig_insn
->opcode
),
3880 if (orig_insn
->ntok
> noperands
)
3881 as_warn (_("found too many (%d) operands for '%s': Expected %d"),
3883 xtensa_opcode_name (xtensa_default_isa
, orig_insn
->opcode
),
3886 /* If there are not enough operands, we will assert above. If there
3887 are too many, just cut out the extras here. */
3888 orig_insn
->ntok
= noperands
;
3890 if (tinsn_has_invalid_symbolic_operands (orig_insn
))
3893 /* Special case for extui opcode which has constraints not handled
3894 by the ordinary operand encoding checks. The number of operands
3895 and related syntax issues have already been checked. */
3896 if (orig_insn
->opcode
== xtensa_extui_opcode
)
3898 int shiftimm
= orig_insn
->tok
[2].X_add_number
;
3899 int maskimm
= orig_insn
->tok
[3].X_add_number
;
3900 if (shiftimm
+ maskimm
> 32)
3902 as_bad (_("immediate operands sum to greater than 32"));
3907 /* If the instruction will definitely need to be relaxed, it is better
3908 to expand it now for better scheduling. Decide whether to expand
3910 do_expand
= (!orig_insn
->is_specific_opcode
&& use_transform ());
3912 /* Calls should be expanded to longcalls only in the backend relaxation
3913 so that the assembly scheduler will keep the L32R/CALLX instructions
3915 if (is_direct_call_opcode (orig_insn
->opcode
))
3918 if (tinsn_has_symbolic_operands (orig_insn
))
3920 /* The values of symbolic operands are not known yet, so only expand
3921 now if an operand is "complex" (e.g., difference of symbols) and
3922 will have to be stored as a literal regardless of the value. */
3923 if (!tinsn_has_complex_operands (orig_insn
))
3926 else if (xg_immeds_fit (orig_insn
))
3930 xg_assembly_relax (istack
, orig_insn
, 0, 0, 0, 0, 0);
3932 istack_push (istack
, orig_insn
);
3938 /* Return TRUE if the section flags are marked linkonce
3939 or the name is .gnu.linkonce.*. */
3941 static int linkonce_len
= sizeof (".gnu.linkonce.") - 1;
3944 get_is_linkonce_section (bfd
*abfd ATTRIBUTE_UNUSED
, segT sec
)
3946 flagword flags
, link_once_flags
;
3948 flags
= bfd_get_section_flags (abfd
, sec
);
3949 link_once_flags
= (flags
& SEC_LINK_ONCE
);
3951 /* Flags might not be set yet. */
3952 if (!link_once_flags
3953 && strncmp (segment_name (sec
), ".gnu.linkonce.", linkonce_len
) == 0)
3954 link_once_flags
= SEC_LINK_ONCE
;
3956 return (link_once_flags
!= 0);
3961 xtensa_add_literal_sym (symbolS
*sym
)
3965 l
= (sym_list
*) xmalloc (sizeof (sym_list
));
3967 l
->next
= literal_syms
;
3973 xtensa_create_literal_symbol (segT sec
, fragS
*frag
)
3975 static int lit_num
= 0;
3976 static char name
[256];
3979 sprintf (name
, ".L_lit_sym%d", lit_num
);
3981 /* Create a local symbol. If it is in a linkonce section, we have to
3982 be careful to make sure that if it is used in a relocation that the
3983 symbol will be in the output file. */
3984 if (get_is_linkonce_section (stdoutput
, sec
))
3986 symbolP
= symbol_new (name
, sec
, 0, frag
);
3987 S_CLEAR_EXTERNAL (symbolP
);
3988 /* symbolP->local = 1; */
3991 symbolP
= symbol_new (name
, sec
, 0, frag
);
3993 xtensa_add_literal_sym (symbolP
);
4000 /* Currently all literals that are generated here are 32-bit L32R targets. */
4003 xg_assemble_literal (/* const */ TInsn
*insn
)
4006 symbolS
*lit_sym
= NULL
;
4007 bfd_reloc_code_real_type reloc
;
4008 bfd_boolean pcrel
= FALSE
;
4011 /* size = 4 for L32R. It could easily be larger when we move to
4012 larger constants. Add a parameter later. */
4013 offsetT litsize
= 4;
4014 offsetT litalign
= 2; /* 2^2 = 4 */
4015 expressionS saved_loc
;
4016 expressionS
* emit_val
;
4018 set_expr_symbol_offset (&saved_loc
, frag_now
->fr_symbol
, frag_now_fix ());
4020 assert (insn
->insn_type
== ITYPE_LITERAL
);
4021 assert (insn
->ntok
== 1); /* must be only one token here */
4023 xtensa_switch_to_literal_fragment (&state
);
4025 emit_val
= &insn
->tok
[0];
4026 if (emit_val
->X_op
== O_big
)
4028 int size
= emit_val
->X_add_number
* CHARS_PER_LITTLENUM
;
4031 /* This happens when someone writes a "movi a2, big_number". */
4032 as_bad_where (frag_now
->fr_file
, frag_now
->fr_line
,
4033 _("invalid immediate"));
4034 xtensa_restore_emit_state (&state
);
4039 /* Force a 4-byte align here. Note that this opens a new frag, so all
4040 literals done with this function have a frag to themselves. That's
4041 important for the way text section literals work. */
4042 frag_align (litalign
, 0, 0);
4043 record_alignment (now_seg
, litalign
);
4045 switch (emit_val
->X_op
)
4051 p
= frag_more (litsize
);
4052 xtensa_set_frag_assembly_state (frag_now
);
4053 reloc
= map_operator_to_reloc (emit_val
->X_op
);
4054 if (emit_val
->X_add_symbol
)
4055 emit_val
->X_op
= O_symbol
;
4057 emit_val
->X_op
= O_constant
;
4058 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
,
4059 litsize
, emit_val
, pcrel
, reloc
);
4063 emit_expr (emit_val
, litsize
);
4067 assert (frag_now
->tc_frag_data
.literal_frag
== NULL
);
4068 frag_now
->tc_frag_data
.literal_frag
= get_literal_pool_location (now_seg
);
4069 frag_now
->fr_symbol
= xtensa_create_literal_symbol (now_seg
, frag_now
);
4070 lit_sym
= frag_now
->fr_symbol
;
4073 xtensa_restore_emit_state (&state
);
4079 xg_assemble_literal_space (/* const */ int size
, int slot
)
4082 /* We might have to do something about this alignment. It only
4083 takes effect if something is placed here. */
4084 offsetT litalign
= 2; /* 2^2 = 4 */
4085 fragS
*lit_saved_frag
;
4087 assert (size
% 4 == 0);
4089 xtensa_switch_to_literal_fragment (&state
);
4091 /* Force a 4-byte align here. */
4092 frag_align (litalign
, 0, 0);
4093 record_alignment (now_seg
, litalign
);
4097 lit_saved_frag
= frag_now
;
4098 frag_now
->tc_frag_data
.literal_frag
= get_literal_pool_location (now_seg
);
4099 frag_now
->fr_symbol
= xtensa_create_literal_symbol (now_seg
, frag_now
);
4100 xg_finish_frag (0, RELAX_LITERAL
, 0, size
, FALSE
);
4103 xtensa_restore_emit_state (&state
);
4104 frag_now
->tc_frag_data
.literal_frags
[slot
] = lit_saved_frag
;
4108 /* Put in a fixup record based on the opcode.
4109 Return TRUE on success. */
4112 xg_add_opcode_fix (TInsn
*tinsn
,
4120 xtensa_opcode opcode
= tinsn
->opcode
;
4121 bfd_reloc_code_real_type reloc
;
4122 reloc_howto_type
*howto
;
4126 reloc
= BFD_RELOC_NONE
;
4128 /* First try the special cases for "alternate" relocs. */
4129 if (opcode
== xtensa_l32r_opcode
)
4131 if (fragP
->tc_frag_data
.use_absolute_literals
)
4132 reloc
= encode_alt_reloc (slot
);
4134 else if (opcode
== xtensa_const16_opcode
)
4136 if (expr
->X_op
== O_lo16
)
4138 reloc
= encode_reloc (slot
);
4139 expr
->X_op
= O_symbol
;
4141 else if (expr
->X_op
== O_hi16
)
4143 reloc
= encode_alt_reloc (slot
);
4144 expr
->X_op
= O_symbol
;
4148 if (opnum
!= get_relaxable_immed (opcode
))
4150 as_bad (_("invalid relocation for operand %i of '%s'"),
4151 opnum
+ 1, xtensa_opcode_name (xtensa_default_isa
, opcode
));
4155 /* Handle erroneous "@h" and "@l" expressions here before they propagate
4156 into the symbol table where the generic portions of the assembler
4157 won't know what to do with them. */
4158 if (expr
->X_op
== O_lo16
|| expr
->X_op
== O_hi16
)
4160 as_bad (_("invalid expression for operand %i of '%s'"),
4161 opnum
+ 1, xtensa_opcode_name (xtensa_default_isa
, opcode
));
4165 /* Next try the generic relocs. */
4166 if (reloc
== BFD_RELOC_NONE
)
4167 reloc
= encode_reloc (slot
);
4168 if (reloc
== BFD_RELOC_NONE
)
4170 as_bad (_("invalid relocation in instruction slot %i"), slot
);
4174 howto
= bfd_reloc_type_lookup (stdoutput
, reloc
);
4177 as_bad (_("undefined symbol for opcode \"%s\""),
4178 xtensa_opcode_name (xtensa_default_isa
, opcode
));
4182 fmt_length
= xtensa_format_length (xtensa_default_isa
, fmt
);
4183 the_fix
= fix_new_exp (fragP
, offset
, fmt_length
, expr
,
4184 howto
->pc_relative
, reloc
);
4185 the_fix
->fx_no_overflow
= 1;
4186 the_fix
->tc_fix_data
.X_add_symbol
= expr
->X_add_symbol
;
4187 the_fix
->tc_fix_data
.X_add_number
= expr
->X_add_number
;
4188 the_fix
->tc_fix_data
.slot
= slot
;
4195 xg_emit_insn_to_buf (TInsn
*tinsn
,
4199 bfd_boolean build_fix
)
4201 static xtensa_insnbuf insnbuf
= NULL
;
4202 bfd_boolean has_symbolic_immed
= FALSE
;
4203 bfd_boolean ok
= TRUE
;
4206 insnbuf
= xtensa_insnbuf_alloc (xtensa_default_isa
);
4208 has_symbolic_immed
= tinsn_to_insnbuf (tinsn
, insnbuf
);
4209 if (has_symbolic_immed
&& build_fix
)
4212 xtensa_format fmt
= xg_get_single_format (tinsn
->opcode
);
4213 int slot
= xg_get_single_slot (tinsn
->opcode
);
4214 int opnum
= get_relaxable_immed (tinsn
->opcode
);
4215 expressionS
*exp
= &tinsn
->tok
[opnum
];
4217 if (!xg_add_opcode_fix (tinsn
, opnum
, fmt
, slot
, exp
, fragP
, offset
))
4220 fragP
->tc_frag_data
.is_insn
= TRUE
;
4221 xtensa_insnbuf_to_chars (xtensa_default_isa
, insnbuf
,
4222 (unsigned char *) buf
, 0);
4228 xg_resolve_literals (TInsn
*insn
, symbolS
*lit_sym
)
4230 symbolS
*sym
= get_special_literal_symbol ();
4234 assert (insn
->insn_type
== ITYPE_INSN
);
4235 for (i
= 0; i
< insn
->ntok
; i
++)
4236 if (insn
->tok
[i
].X_add_symbol
== sym
)
4237 insn
->tok
[i
].X_add_symbol
= lit_sym
;
4243 xg_resolve_labels (TInsn
*insn
, symbolS
*label_sym
)
4245 symbolS
*sym
= get_special_label_symbol ();
4247 for (i
= 0; i
< insn
->ntok
; i
++)
4248 if (insn
->tok
[i
].X_add_symbol
== sym
)
4249 insn
->tok
[i
].X_add_symbol
= label_sym
;
4254 /* Return TRUE if the instruction can write to the specified
4255 integer register. */
4258 is_register_writer (const TInsn
*insn
, const char *regset
, int regnum
)
4262 xtensa_isa isa
= xtensa_default_isa
;
4264 num_ops
= xtensa_opcode_num_operands (isa
, insn
->opcode
);
4266 for (i
= 0; i
< num_ops
; i
++)
4269 inout
= xtensa_operand_inout (isa
, insn
->opcode
, i
);
4270 if ((inout
== 'o' || inout
== 'm')
4271 && xtensa_operand_is_register (isa
, insn
->opcode
, i
) == 1)
4273 xtensa_regfile opnd_rf
=
4274 xtensa_operand_regfile (isa
, insn
->opcode
, i
);
4275 if (!strcmp (xtensa_regfile_shortname (isa
, opnd_rf
), regset
))
4277 if ((insn
->tok
[i
].X_op
== O_register
)
4278 && (insn
->tok
[i
].X_add_number
== regnum
))
4288 is_bad_loopend_opcode (const TInsn
*tinsn
)
4290 xtensa_opcode opcode
= tinsn
->opcode
;
4292 if (opcode
== XTENSA_UNDEFINED
)
4295 if (opcode
== xtensa_call0_opcode
4296 || opcode
== xtensa_callx0_opcode
4297 || opcode
== xtensa_call4_opcode
4298 || opcode
== xtensa_callx4_opcode
4299 || opcode
== xtensa_call8_opcode
4300 || opcode
== xtensa_callx8_opcode
4301 || opcode
== xtensa_call12_opcode
4302 || opcode
== xtensa_callx12_opcode
4303 || opcode
== xtensa_isync_opcode
4304 || opcode
== xtensa_ret_opcode
4305 || opcode
== xtensa_ret_n_opcode
4306 || opcode
== xtensa_retw_opcode
4307 || opcode
== xtensa_retw_n_opcode
4308 || opcode
== xtensa_waiti_opcode
4309 || opcode
== xtensa_rsr_lcount_opcode
)
4316 /* Labels that begin with ".Ln" or ".LM" are unaligned.
4317 This allows the debugger to add unaligned labels.
4318 Also, the assembler generates stabs labels that need
4319 not be aligned: FAKE_LABEL_NAME . {"F", "L", "endfunc"}. */
4322 is_unaligned_label (symbolS
*sym
)
4324 const char *name
= S_GET_NAME (sym
);
4325 static size_t fake_size
= 0;
4329 && name
[1] == 'L' && (name
[2] == 'n' || name
[2] == 'M'))
4332 /* FAKE_LABEL_NAME followed by "F", "L" or "endfunc" */
4334 fake_size
= strlen (FAKE_LABEL_NAME
);
4337 && strncmp (FAKE_LABEL_NAME
, name
, fake_size
) == 0
4338 && (name
[fake_size
] == 'F'
4339 || name
[fake_size
] == 'L'
4340 || (name
[fake_size
] == 'e'
4341 && strncmp ("endfunc", name
+fake_size
, 7) == 0)))
4349 next_non_empty_frag (const fragS
*fragP
)
4351 fragS
*next_fragP
= fragP
->fr_next
;
4353 /* Sometimes an empty will end up here due storage allocation issues.
4354 So we have to skip until we find something legit. */
4355 while (next_fragP
&& next_fragP
->fr_fix
== 0)
4356 next_fragP
= next_fragP
->fr_next
;
4358 if (next_fragP
== NULL
|| next_fragP
->fr_fix
== 0)
4366 next_frag_opcode_is_loop (const fragS
*fragP
, xtensa_opcode
*opcode
)
4368 xtensa_opcode out_opcode
;
4369 const fragS
*next_fragP
= next_non_empty_frag (fragP
);
4371 if (next_fragP
== NULL
)
4374 out_opcode
= get_opcode_from_buf (next_fragP
->fr_literal
, 0);
4375 if (xtensa_opcode_is_loop (xtensa_default_isa
, out_opcode
) == 1)
4377 *opcode
= out_opcode
;
4385 frag_format_size (const fragS
*fragP
)
4387 static xtensa_insnbuf insnbuf
= NULL
;
4388 xtensa_isa isa
= xtensa_default_isa
;
4393 insnbuf
= xtensa_insnbuf_alloc (isa
);
4396 return XTENSA_UNDEFINED
;
4398 xtensa_insnbuf_from_chars (isa
, insnbuf
,
4399 (unsigned char *) fragP
->fr_literal
, 0);
4401 fmt
= xtensa_format_decode (isa
, insnbuf
);
4402 if (fmt
== XTENSA_UNDEFINED
)
4403 return XTENSA_UNDEFINED
;
4404 fmt_size
= xtensa_format_length (isa
, fmt
);
4406 /* If the next format won't be changing due to relaxation, just
4407 return the length of the first format. */
4408 if (fragP
->fr_opcode
!= fragP
->fr_literal
)
4411 /* If during relaxation we have to pull an instruction out of a
4412 multi-slot instruction, we will return the more conservative
4413 number. This works because alignment on bigger instructions
4414 is more restrictive than alignment on smaller instructions.
4415 This is more conservative than we would like, but it happens
4418 if (xtensa_format_num_slots (xtensa_default_isa
, fmt
) > 1)
4421 /* If we aren't doing one of our own relaxations or it isn't
4422 slot-based, then the insn size won't change. */
4423 if (fragP
->fr_type
!= rs_machine_dependent
)
4425 if (fragP
->fr_subtype
!= RELAX_SLOTS
)
4428 /* If an instruction is about to grow, return the longer size. */
4429 if (fragP
->tc_frag_data
.slot_subtypes
[0] == RELAX_IMMED_STEP1
4430 || fragP
->tc_frag_data
.slot_subtypes
[0] == RELAX_IMMED_STEP2
4431 || fragP
->tc_frag_data
.slot_subtypes
[0] == RELAX_IMMED_STEP3
)
4433 /* For most frags at RELAX_IMMED_STEPX, with X > 0, the first
4434 instruction in the relaxed version is of length 3. (The case
4435 where we have to pull the instruction out of a FLIX bundle
4436 is handled conservatively above.) However, frags with opcodes
4437 that are expanding to wide branches end up having formats that
4438 are not determinable by the RELAX_IMMED_STEPX enumeration, and
4439 we can't tell directly what format the relaxer picked. This
4440 is a wart in the design of the relaxer that should someday be
4441 fixed, but would require major changes, or at least should
4442 be accompanied by major changes to make use of that data.
4444 In any event, we can tell that we are expanding from a single-slot
4445 three-byte format to a wider one with the logic below. */
4447 if (fmt_size
<= 3 && fragP
->tc_frag_data
.text_expansion
[0] != 3)
4448 return 3 + fragP
->tc_frag_data
.text_expansion
[0];
4453 if (fragP
->tc_frag_data
.slot_subtypes
[0] == RELAX_NARROW
)
4454 return 2 + fragP
->tc_frag_data
.text_expansion
[0];
4461 next_frag_format_size (const fragS
*fragP
)
4463 const fragS
*next_fragP
= next_non_empty_frag (fragP
);
4464 return frag_format_size (next_fragP
);
4468 /* In early Xtensa Processors, for reasons that are unclear, the ISA
4469 required two-byte instructions to be treated as three-byte instructions
4470 for loop instruction alignment. This restriction was removed beginning
4471 with Xtensa LX. Now the only requirement on loop instruction alignment
4472 is that the first instruction of the loop must appear at an address that
4473 does not cross a fetch boundary. */
4476 get_loop_align_size (int insn_size
)
4478 if (insn_size
== XTENSA_UNDEFINED
)
4479 return xtensa_fetch_width
;
4481 if (enforce_three_byte_loop_align
&& insn_size
== 2)
4488 /* If the next legit fragment is an end-of-loop marker,
4489 switch its state so it will instantiate a NOP. */
4492 update_next_frag_state (fragS
*fragP
)
4494 fragS
*next_fragP
= fragP
->fr_next
;
4495 fragS
*new_target
= NULL
;
4499 /* We are guaranteed there will be one of these... */
4500 while (!(next_fragP
->fr_type
== rs_machine_dependent
4501 && (next_fragP
->fr_subtype
== RELAX_MAYBE_UNREACHABLE
4502 || next_fragP
->fr_subtype
== RELAX_UNREACHABLE
)))
4503 next_fragP
= next_fragP
->fr_next
;
4505 assert (next_fragP
->fr_type
== rs_machine_dependent
4506 && (next_fragP
->fr_subtype
== RELAX_MAYBE_UNREACHABLE
4507 || next_fragP
->fr_subtype
== RELAX_UNREACHABLE
));
4509 /* ...and one of these. */
4510 new_target
= next_fragP
->fr_next
;
4511 while (!(new_target
->fr_type
== rs_machine_dependent
4512 && (new_target
->fr_subtype
== RELAX_MAYBE_DESIRE_ALIGN
4513 || new_target
->fr_subtype
== RELAX_DESIRE_ALIGN
)))
4514 new_target
= new_target
->fr_next
;
4516 assert (new_target
->fr_type
== rs_machine_dependent
4517 && (new_target
->fr_subtype
== RELAX_MAYBE_DESIRE_ALIGN
4518 || new_target
->fr_subtype
== RELAX_DESIRE_ALIGN
));
4521 while (next_fragP
&& next_fragP
->fr_fix
== 0)
4523 if (next_fragP
->fr_type
== rs_machine_dependent
4524 && next_fragP
->fr_subtype
== RELAX_LOOP_END
)
4526 next_fragP
->fr_subtype
= RELAX_LOOP_END_ADD_NOP
;
4530 next_fragP
= next_fragP
->fr_next
;
4536 next_frag_is_branch_target (const fragS
*fragP
)
4538 /* Sometimes an empty will end up here due to storage allocation issues,
4539 so we have to skip until we find something legit. */
4540 for (fragP
= fragP
->fr_next
; fragP
; fragP
= fragP
->fr_next
)
4542 if (fragP
->tc_frag_data
.is_branch_target
)
4544 if (fragP
->fr_fix
!= 0)
4552 next_frag_is_loop_target (const fragS
*fragP
)
4554 /* Sometimes an empty will end up here due storage allocation issues.
4555 So we have to skip until we find something legit. */
4556 for (fragP
= fragP
->fr_next
; fragP
; fragP
= fragP
->fr_next
)
4558 if (fragP
->tc_frag_data
.is_loop_target
)
4560 if (fragP
->fr_fix
!= 0)
4568 next_frag_pre_opcode_bytes (const fragS
*fragp
)
4570 const fragS
*next_fragp
= fragp
->fr_next
;
4571 xtensa_opcode next_opcode
;
4573 if (!next_frag_opcode_is_loop (fragp
, &next_opcode
))
4576 /* Sometimes an empty will end up here due to storage allocation issues,
4577 so we have to skip until we find something legit. */
4578 while (next_fragp
->fr_fix
== 0)
4579 next_fragp
= next_fragp
->fr_next
;
4581 if (next_fragp
->fr_type
!= rs_machine_dependent
)
4584 /* There is some implicit knowledge encoded in here.
4585 The LOOP instructions that are NOT RELAX_IMMED have
4586 been relaxed. Note that we can assume that the LOOP
4587 instruction is in slot 0 because loops aren't bundleable. */
4588 if (next_fragp
->tc_frag_data
.slot_subtypes
[0] > RELAX_IMMED
)
4589 return get_expanded_loop_offset (next_opcode
);
4595 /* Mark a location where we can later insert literal frags. Update
4596 the section's literal_pool_loc, so subsequent literals can be
4597 placed nearest to their use. */
4600 xtensa_mark_literal_pool_location (void)
4602 /* Any labels pointing to the current location need
4603 to be adjusted to after the literal pool. */
4605 fragS
*pool_location
;
4607 if (use_literal_section
)
4610 /* We stash info in these frags so we can later move the literal's
4611 fixes into this frchain's fix list. */
4612 pool_location
= frag_now
;
4613 frag_now
->tc_frag_data
.lit_frchain
= frchain_now
;
4614 frag_now
->tc_frag_data
.literal_frag
= frag_now
;
4615 frag_variant (rs_machine_dependent
, 0, 0,
4616 RELAX_LITERAL_POOL_BEGIN
, NULL
, 0, NULL
);
4617 xtensa_set_frag_assembly_state (frag_now
);
4618 frag_now
->tc_frag_data
.lit_seg
= now_seg
;
4619 frag_variant (rs_machine_dependent
, 0, 0,
4620 RELAX_LITERAL_POOL_END
, NULL
, 0, NULL
);
4621 xtensa_set_frag_assembly_state (frag_now
);
4623 /* Now put a frag into the literal pool that points to this location. */
4624 set_literal_pool_location (now_seg
, pool_location
);
4625 xtensa_switch_to_non_abs_literal_fragment (&s
);
4626 frag_align (2, 0, 0);
4627 record_alignment (now_seg
, 2);
4629 /* Close whatever frag is there. */
4630 frag_variant (rs_fill
, 0, 0, 0, NULL
, 0, NULL
);
4631 xtensa_set_frag_assembly_state (frag_now
);
4632 frag_now
->tc_frag_data
.literal_frag
= pool_location
;
4633 frag_variant (rs_fill
, 0, 0, 0, NULL
, 0, NULL
);
4634 xtensa_restore_emit_state (&s
);
4635 xtensa_set_frag_assembly_state (frag_now
);
4639 /* Build a nop of the correct size into tinsn. */
4642 build_nop (TInsn
*tinsn
, int size
)
4648 tinsn
->opcode
= xtensa_nop_n_opcode
;
4650 if (tinsn
->opcode
== XTENSA_UNDEFINED
)
4651 as_fatal (_("opcode 'NOP.N' unavailable in this configuration"));
4655 if (xtensa_nop_opcode
== XTENSA_UNDEFINED
)
4657 tinsn
->opcode
= xtensa_or_opcode
;
4658 set_expr_const (&tinsn
->tok
[0], 1);
4659 set_expr_const (&tinsn
->tok
[1], 1);
4660 set_expr_const (&tinsn
->tok
[2], 1);
4664 tinsn
->opcode
= xtensa_nop_opcode
;
4666 assert (tinsn
->opcode
!= XTENSA_UNDEFINED
);
4671 /* Assemble a NOP of the requested size in the buffer. User must have
4672 allocated "buf" with at least "size" bytes. */
4675 assemble_nop (int size
, char *buf
)
4677 static xtensa_insnbuf insnbuf
= NULL
;
4680 build_nop (&tinsn
, size
);
4683 insnbuf
= xtensa_insnbuf_alloc (xtensa_default_isa
);
4685 tinsn_to_insnbuf (&tinsn
, insnbuf
);
4686 xtensa_insnbuf_to_chars (xtensa_default_isa
, insnbuf
,
4687 (unsigned char *) buf
, 0);
4691 /* Return the number of bytes for the offset of the expanded loop
4692 instruction. This should be incorporated into the relaxation
4693 specification but is hard-coded here. This is used to auto-align
4694 the loop instruction. It is invalid to call this function if the
4695 configuration does not have loops or if the opcode is not a loop
4699 get_expanded_loop_offset (xtensa_opcode opcode
)
4701 /* This is the OFFSET of the loop instruction in the expanded loop.
4702 This MUST correspond directly to the specification of the loop
4703 expansion. It will be validated on fragment conversion. */
4704 assert (opcode
!= XTENSA_UNDEFINED
);
4705 if (opcode
== xtensa_loop_opcode
)
4707 if (opcode
== xtensa_loopnez_opcode
)
4709 if (opcode
== xtensa_loopgtz_opcode
)
4711 as_fatal (_("get_expanded_loop_offset: invalid opcode"));
4717 get_literal_pool_location (segT seg
)
4719 return seg_info (seg
)->tc_segment_info_data
.literal_pool_loc
;
4724 set_literal_pool_location (segT seg
, fragS
*literal_pool_loc
)
4726 seg_info (seg
)->tc_segment_info_data
.literal_pool_loc
= literal_pool_loc
;
4730 /* Set frag assembly state should be called when a new frag is
4731 opened and after a frag has been closed. */
4734 xtensa_set_frag_assembly_state (fragS
*fragP
)
4736 if (!density_supported
)
4737 fragP
->tc_frag_data
.is_no_density
= TRUE
;
4739 /* This function is called from subsegs_finish, which is called
4740 after xtensa_end, so we can't use "use_transform" or
4741 "use_schedule" here. */
4742 if (!directive_state
[directive_transform
])
4743 fragP
->tc_frag_data
.is_no_transform
= TRUE
;
4744 if (directive_state
[directive_longcalls
])
4745 fragP
->tc_frag_data
.use_longcalls
= TRUE
;
4746 fragP
->tc_frag_data
.use_absolute_literals
=
4747 directive_state
[directive_absolute_literals
];
4748 fragP
->tc_frag_data
.is_assembly_state_set
= TRUE
;
4753 relaxable_section (asection
*sec
)
4755 return ((sec
->flags
& SEC_DEBUGGING
) == 0
4756 && strcmp (sec
->name
, ".eh_frame") != 0);
4761 xtensa_mark_frags_for_org (void)
4765 /* Walk over each fragment of all of the current segments. If we find
4766 a .org frag in any of the segments, mark all frags prior to it as
4767 "no transform", which will prevent linker optimizations from messing
4768 up the .org distance. This should be done after
4769 xtensa_find_unmarked_state_frags, because we don't want to worry here
4770 about that function trashing the data we save here. */
4772 for (seclist
= &stdoutput
->sections
;
4773 seclist
&& *seclist
;
4774 seclist
= &(*seclist
)->next
)
4776 segT sec
= *seclist
;
4777 segment_info_type
*seginfo
;
4780 flags
= bfd_get_section_flags (stdoutput
, sec
);
4781 if (flags
& SEC_DEBUGGING
)
4783 if (!(flags
& SEC_ALLOC
))
4786 seginfo
= seg_info (sec
);
4787 if (seginfo
&& seginfo
->frchainP
)
4789 fragS
*last_fragP
= seginfo
->frchainP
->frch_root
;
4790 for (fragP
= seginfo
->frchainP
->frch_root
; fragP
;
4791 fragP
= fragP
->fr_next
)
4793 /* cvt_frag_to_fill has changed the fr_type of org frags to
4794 rs_fill, so use the value as cached in rs_subtype here. */
4795 if (fragP
->fr_subtype
== RELAX_ORG
)
4797 while (last_fragP
!= fragP
->fr_next
)
4799 last_fragP
->tc_frag_data
.is_no_transform
= TRUE
;
4800 last_fragP
= last_fragP
->fr_next
;
4810 xtensa_find_unmarked_state_frags (void)
4814 /* Walk over each fragment of all of the current segments. For each
4815 unmarked fragment, mark it with the same info as the previous
4817 for (seclist
= &stdoutput
->sections
;
4818 seclist
&& *seclist
;
4819 seclist
= &(*seclist
)->next
)
4821 segT sec
= *seclist
;
4822 segment_info_type
*seginfo
;
4825 flags
= bfd_get_section_flags (stdoutput
, sec
);
4826 if (flags
& SEC_DEBUGGING
)
4828 if (!(flags
& SEC_ALLOC
))
4831 seginfo
= seg_info (sec
);
4832 if (seginfo
&& seginfo
->frchainP
)
4834 fragS
*last_fragP
= 0;
4835 for (fragP
= seginfo
->frchainP
->frch_root
; fragP
;
4836 fragP
= fragP
->fr_next
)
4838 if (fragP
->fr_fix
!= 0
4839 && !fragP
->tc_frag_data
.is_assembly_state_set
)
4841 if (last_fragP
== 0)
4843 as_warn_where (fragP
->fr_file
, fragP
->fr_line
,
4844 _("assembly state not set for first frag in section %s"),
4849 fragP
->tc_frag_data
.is_assembly_state_set
= TRUE
;
4850 fragP
->tc_frag_data
.is_no_density
=
4851 last_fragP
->tc_frag_data
.is_no_density
;
4852 fragP
->tc_frag_data
.is_no_transform
=
4853 last_fragP
->tc_frag_data
.is_no_transform
;
4854 fragP
->tc_frag_data
.use_longcalls
=
4855 last_fragP
->tc_frag_data
.use_longcalls
;
4856 fragP
->tc_frag_data
.use_absolute_literals
=
4857 last_fragP
->tc_frag_data
.use_absolute_literals
;
4860 if (fragP
->tc_frag_data
.is_assembly_state_set
)
4869 xtensa_find_unaligned_branch_targets (bfd
*abfd ATTRIBUTE_UNUSED
,
4871 void *unused ATTRIBUTE_UNUSED
)
4873 flagword flags
= bfd_get_section_flags (abfd
, sec
);
4874 segment_info_type
*seginfo
= seg_info (sec
);
4875 fragS
*frag
= seginfo
->frchainP
->frch_root
;
4877 if (flags
& SEC_CODE
)
4879 xtensa_isa isa
= xtensa_default_isa
;
4880 xtensa_insnbuf insnbuf
= xtensa_insnbuf_alloc (isa
);
4881 while (frag
!= NULL
)
4883 if (frag
->tc_frag_data
.is_branch_target
)
4886 addressT branch_align
, frag_addr
;
4889 xtensa_insnbuf_from_chars
4890 (isa
, insnbuf
, (unsigned char *) frag
->fr_literal
, 0);
4891 fmt
= xtensa_format_decode (isa
, insnbuf
);
4892 op_size
= xtensa_format_length (isa
, fmt
);
4893 branch_align
= 1 << branch_align_power (sec
);
4894 frag_addr
= frag
->fr_address
% branch_align
;
4895 if (frag_addr
+ op_size
> branch_align
)
4896 as_warn_where (frag
->fr_file
, frag
->fr_line
,
4897 _("unaligned branch target: %d bytes at 0x%lx"),
4898 op_size
, (long) frag
->fr_address
);
4900 frag
= frag
->fr_next
;
4902 xtensa_insnbuf_free (isa
, insnbuf
);
4908 xtensa_find_unaligned_loops (bfd
*abfd ATTRIBUTE_UNUSED
,
4910 void *unused ATTRIBUTE_UNUSED
)
4912 flagword flags
= bfd_get_section_flags (abfd
, sec
);
4913 segment_info_type
*seginfo
= seg_info (sec
);
4914 fragS
*frag
= seginfo
->frchainP
->frch_root
;
4915 xtensa_isa isa
= xtensa_default_isa
;
4917 if (flags
& SEC_CODE
)
4919 xtensa_insnbuf insnbuf
= xtensa_insnbuf_alloc (isa
);
4920 while (frag
!= NULL
)
4922 if (frag
->tc_frag_data
.is_first_loop_insn
)
4928 xtensa_insnbuf_from_chars
4929 (isa
, insnbuf
, (unsigned char *) frag
->fr_literal
, 0);
4930 fmt
= xtensa_format_decode (isa
, insnbuf
);
4931 op_size
= xtensa_format_length (isa
, fmt
);
4932 frag_addr
= frag
->fr_address
% xtensa_fetch_width
;
4934 if (frag_addr
+ op_size
> xtensa_fetch_width
)
4935 as_warn_where (frag
->fr_file
, frag
->fr_line
,
4936 _("unaligned loop: %d bytes at 0x%lx"),
4937 op_size
, (long) frag
->fr_address
);
4939 frag
= frag
->fr_next
;
4941 xtensa_insnbuf_free (isa
, insnbuf
);
4947 xg_apply_fix_value (fixS
*fixP
, valueT val
)
4949 xtensa_isa isa
= xtensa_default_isa
;
4950 static xtensa_insnbuf insnbuf
= NULL
;
4951 static xtensa_insnbuf slotbuf
= NULL
;
4954 bfd_boolean alt_reloc
;
4955 xtensa_opcode opcode
;
4956 char *const fixpos
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
4958 (void) decode_reloc (fixP
->fx_r_type
, &slot
, &alt_reloc
);
4960 as_fatal (_("unexpected fix"));
4964 insnbuf
= xtensa_insnbuf_alloc (isa
);
4965 slotbuf
= xtensa_insnbuf_alloc (isa
);
4968 xtensa_insnbuf_from_chars (isa
, insnbuf
, (unsigned char *) fixpos
, 0);
4969 fmt
= xtensa_format_decode (isa
, insnbuf
);
4970 if (fmt
== XTENSA_UNDEFINED
)
4971 as_fatal (_("undecodable fix"));
4972 xtensa_format_get_slot (isa
, fmt
, slot
, insnbuf
, slotbuf
);
4973 opcode
= xtensa_opcode_decode (isa
, fmt
, slot
, slotbuf
);
4974 if (opcode
== XTENSA_UNDEFINED
)
4975 as_fatal (_("undecodable fix"));
4977 /* CONST16 immediates are not PC-relative, despite the fact that we
4978 reuse the normal PC-relative operand relocations for the low part
4979 of a CONST16 operand. */
4980 if (opcode
== xtensa_const16_opcode
)
4983 xtensa_insnbuf_set_operand (slotbuf
, fmt
, slot
, opcode
,
4984 get_relaxable_immed (opcode
), val
,
4985 fixP
->fx_file
, fixP
->fx_line
);
4987 xtensa_format_set_slot (isa
, fmt
, slot
, insnbuf
, slotbuf
);
4988 xtensa_insnbuf_to_chars (isa
, insnbuf
, (unsigned char *) fixpos
, 0);
4994 /* External Functions and Other GAS Hooks. */
4997 xtensa_target_format (void)
4999 return (target_big_endian
? "elf32-xtensa-be" : "elf32-xtensa-le");
5004 xtensa_file_arch_init (bfd
*abfd
)
5006 bfd_set_private_flags (abfd
, 0x100 | 0x200);
5011 md_number_to_chars (char *buf
, valueT val
, int n
)
5013 if (target_big_endian
)
5014 number_to_chars_bigendian (buf
, val
, n
);
5016 number_to_chars_littleendian (buf
, val
, n
);
5020 /* This function is called once, at assembler startup time. It should
5021 set up all the tables, etc. that the MD part of the assembler will
5027 segT current_section
= now_seg
;
5028 int current_subsec
= now_subseg
;
5031 xtensa_default_isa
= xtensa_isa_init (0, 0);
5032 isa
= xtensa_default_isa
;
5036 /* Set up the literal sections. */
5037 memset (&default_lit_sections
, 0, sizeof (default_lit_sections
));
5039 subseg_set (current_section
, current_subsec
);
5041 xg_init_vinsn (&cur_vinsn
);
5043 xtensa_addi_opcode
= xtensa_opcode_lookup (isa
, "addi");
5044 xtensa_addmi_opcode
= xtensa_opcode_lookup (isa
, "addmi");
5045 xtensa_call0_opcode
= xtensa_opcode_lookup (isa
, "call0");
5046 xtensa_call4_opcode
= xtensa_opcode_lookup (isa
, "call4");
5047 xtensa_call8_opcode
= xtensa_opcode_lookup (isa
, "call8");
5048 xtensa_call12_opcode
= xtensa_opcode_lookup (isa
, "call12");
5049 xtensa_callx0_opcode
= xtensa_opcode_lookup (isa
, "callx0");
5050 xtensa_callx4_opcode
= xtensa_opcode_lookup (isa
, "callx4");
5051 xtensa_callx8_opcode
= xtensa_opcode_lookup (isa
, "callx8");
5052 xtensa_callx12_opcode
= xtensa_opcode_lookup (isa
, "callx12");
5053 xtensa_const16_opcode
= xtensa_opcode_lookup (isa
, "const16");
5054 xtensa_entry_opcode
= xtensa_opcode_lookup (isa
, "entry");
5055 xtensa_extui_opcode
= xtensa_opcode_lookup (isa
, "extui");
5056 xtensa_movi_opcode
= xtensa_opcode_lookup (isa
, "movi");
5057 xtensa_movi_n_opcode
= xtensa_opcode_lookup (isa
, "movi.n");
5058 xtensa_isync_opcode
= xtensa_opcode_lookup (isa
, "isync");
5059 xtensa_jx_opcode
= xtensa_opcode_lookup (isa
, "jx");
5060 xtensa_l32r_opcode
= xtensa_opcode_lookup (isa
, "l32r");
5061 xtensa_loop_opcode
= xtensa_opcode_lookup (isa
, "loop");
5062 xtensa_loopnez_opcode
= xtensa_opcode_lookup (isa
, "loopnez");
5063 xtensa_loopgtz_opcode
= xtensa_opcode_lookup (isa
, "loopgtz");
5064 xtensa_nop_opcode
= xtensa_opcode_lookup (isa
, "nop");
5065 xtensa_nop_n_opcode
= xtensa_opcode_lookup (isa
, "nop.n");
5066 xtensa_or_opcode
= xtensa_opcode_lookup (isa
, "or");
5067 xtensa_ret_opcode
= xtensa_opcode_lookup (isa
, "ret");
5068 xtensa_ret_n_opcode
= xtensa_opcode_lookup (isa
, "ret.n");
5069 xtensa_retw_opcode
= xtensa_opcode_lookup (isa
, "retw");
5070 xtensa_retw_n_opcode
= xtensa_opcode_lookup (isa
, "retw.n");
5071 xtensa_rsr_lcount_opcode
= xtensa_opcode_lookup (isa
, "rsr.lcount");
5072 xtensa_waiti_opcode
= xtensa_opcode_lookup (isa
, "waiti");
5074 init_op_placement_info_table ();
5076 /* Set up the assembly state. */
5077 if (!frag_now
->tc_frag_data
.is_assembly_state_set
)
5078 xtensa_set_frag_assembly_state (frag_now
);
5082 /* TC_INIT_FIX_DATA hook */
5085 xtensa_init_fix_data (fixS
*x
)
5087 x
->tc_fix_data
.slot
= 0;
5088 x
->tc_fix_data
.X_add_symbol
= NULL
;
5089 x
->tc_fix_data
.X_add_number
= 0;
5093 /* tc_frob_label hook */
5096 xtensa_frob_label (symbolS
*sym
)
5100 if (cur_vinsn
.inside_bundle
)
5102 as_bad (_("labels are not valid inside bundles"));
5106 freq
= get_subseg_target_freq (now_seg
, now_subseg
);
5108 /* Since the label was already attached to a frag associated with the
5109 previous basic block, it now needs to be reset to the current frag. */
5110 symbol_set_frag (sym
, frag_now
);
5111 S_SET_VALUE (sym
, (valueT
) frag_now_fix ());
5113 if (generating_literals
)
5114 xtensa_add_literal_sym (sym
);
5116 xtensa_add_insn_label (sym
);
5118 if (symbol_get_tc (sym
)->is_loop_target
)
5120 if ((get_last_insn_flags (now_seg
, now_subseg
)
5121 & FLAG_IS_BAD_LOOPEND
) != 0)
5122 as_bad (_("invalid last instruction for a zero-overhead loop"));
5124 xtensa_set_frag_assembly_state (frag_now
);
5125 frag_var (rs_machine_dependent
, 4, 4, RELAX_LOOP_END
,
5126 frag_now
->fr_symbol
, frag_now
->fr_offset
, NULL
);
5128 xtensa_set_frag_assembly_state (frag_now
);
5129 xtensa_move_labels (frag_now
, 0);
5132 /* No target aligning in the absolute section. */
5133 if (now_seg
!= absolute_section
5134 && do_align_targets ()
5135 && !is_unaligned_label (sym
)
5136 && !generating_literals
)
5138 xtensa_set_frag_assembly_state (frag_now
);
5140 frag_var (rs_machine_dependent
,
5142 RELAX_DESIRE_ALIGN_IF_TARGET
,
5143 frag_now
->fr_symbol
, frag_now
->fr_offset
, NULL
);
5144 xtensa_set_frag_assembly_state (frag_now
);
5145 xtensa_move_labels (frag_now
, 0);
5148 /* We need to mark the following properties even if we aren't aligning. */
5150 /* If the label is already known to be a branch target, i.e., a
5151 forward branch, mark the frag accordingly. Backward branches
5152 are handled by xg_add_branch_and_loop_targets. */
5153 if (symbol_get_tc (sym
)->is_branch_target
)
5154 symbol_get_frag (sym
)->tc_frag_data
.is_branch_target
= TRUE
;
5156 /* Loops only go forward, so they can be identified here. */
5157 if (symbol_get_tc (sym
)->is_loop_target
)
5158 symbol_get_frag (sym
)->tc_frag_data
.is_loop_target
= TRUE
;
5160 dwarf2_emit_label (sym
);
5164 /* tc_unrecognized_line hook */
5167 xtensa_unrecognized_line (int ch
)
5172 if (cur_vinsn
.inside_bundle
== 0)
5174 /* PR8110: Cannot emit line number info inside a FLIX bundle
5175 when using --gstabs. Temporarily disable debug info. */
5176 generate_lineno_debug ();
5177 if (debug_type
== DEBUG_STABS
)
5179 xt_saved_debug_type
= debug_type
;
5180 debug_type
= DEBUG_NONE
;
5183 cur_vinsn
.inside_bundle
= 1;
5187 as_bad (_("extra opening brace"));
5193 if (cur_vinsn
.inside_bundle
)
5194 finish_vinsn (&cur_vinsn
);
5197 as_bad (_("extra closing brace"));
5202 as_bad (_("syntax error"));
5209 /* md_flush_pending_output hook */
5212 xtensa_flush_pending_output (void)
5214 /* This line fixes a bug where automatically generated gstabs info
5215 separates a function label from its entry instruction, ending up
5216 with the literal position between the function label and the entry
5217 instruction and crashing code. It only happens with --gstabs and
5218 --text-section-literals, and when several other obscure relaxation
5219 conditions are met. */
5220 if (outputting_stabs_line_debug
)
5223 if (cur_vinsn
.inside_bundle
)
5224 as_bad (_("missing closing brace"));
5226 /* If there is a non-zero instruction fragment, close it. */
5227 if (frag_now_fix () != 0 && frag_now
->tc_frag_data
.is_insn
)
5229 frag_wane (frag_now
);
5231 xtensa_set_frag_assembly_state (frag_now
);
5233 frag_now
->tc_frag_data
.is_insn
= FALSE
;
5235 xtensa_clear_insn_labels ();
5239 /* We had an error while parsing an instruction. The string might look
5240 like this: "insn arg1, arg2 }". If so, we need to see the closing
5241 brace and reset some fields. Otherwise, the vinsn never gets closed
5242 and the num_slots field will grow past the end of the array of slots,
5243 and bad things happen. */
5246 error_reset_cur_vinsn (void)
5248 if (cur_vinsn
.inside_bundle
)
5250 if (*input_line_pointer
== '}'
5251 || *(input_line_pointer
- 1) == '}'
5252 || *(input_line_pointer
- 2) == '}')
5253 xg_clear_vinsn (&cur_vinsn
);
5259 md_assemble (char *str
)
5261 xtensa_isa isa
= xtensa_default_isa
;
5264 bfd_boolean has_underbar
= FALSE
;
5265 char *arg_strings
[MAX_INSN_ARGS
];
5267 TInsn orig_insn
; /* Original instruction from the input. */
5269 tinsn_init (&orig_insn
);
5271 /* Split off the opcode. */
5272 opnamelen
= strspn (str
, "abcdefghijklmnopqrstuvwxyz_/0123456789.");
5273 opname
= xmalloc (opnamelen
+ 1);
5274 memcpy (opname
, str
, opnamelen
);
5275 opname
[opnamelen
] = '\0';
5277 num_args
= tokenize_arguments (arg_strings
, str
+ opnamelen
);
5280 as_bad (_("syntax error"));
5284 if (xg_translate_idioms (&opname
, &num_args
, arg_strings
))
5287 /* Check for an underbar prefix. */
5290 has_underbar
= TRUE
;
5294 orig_insn
.insn_type
= ITYPE_INSN
;
5296 orig_insn
.is_specific_opcode
= (has_underbar
|| !use_transform ());
5298 orig_insn
.opcode
= xtensa_opcode_lookup (isa
, opname
);
5299 if (orig_insn
.opcode
== XTENSA_UNDEFINED
)
5301 xtensa_format fmt
= xtensa_format_lookup (isa
, opname
);
5302 if (fmt
== XTENSA_UNDEFINED
)
5304 as_bad (_("unknown opcode or format name '%s'"), opname
);
5305 error_reset_cur_vinsn ();
5308 if (!cur_vinsn
.inside_bundle
)
5310 as_bad (_("format names only valid inside bundles"));
5311 error_reset_cur_vinsn ();
5314 if (cur_vinsn
.format
!= XTENSA_UNDEFINED
)
5315 as_warn (_("multiple formats specified for one bundle; using '%s'"),
5317 cur_vinsn
.format
= fmt
;
5318 free (has_underbar
? opname
- 1 : opname
);
5319 error_reset_cur_vinsn ();
5323 /* Parse the arguments. */
5324 if (parse_arguments (&orig_insn
, num_args
, arg_strings
))
5326 as_bad (_("syntax error"));
5327 error_reset_cur_vinsn ();
5331 /* Free the opcode and argument strings, now that they've been parsed. */
5332 free (has_underbar
? opname
- 1 : opname
);
5334 while (num_args
-- > 0)
5335 free (arg_strings
[num_args
]);
5337 /* Get expressions for invisible operands. */
5338 if (get_invisible_operands (&orig_insn
))
5340 error_reset_cur_vinsn ();
5344 /* Check for the right number and type of arguments. */
5345 if (tinsn_check_arguments (&orig_insn
))
5347 error_reset_cur_vinsn ();
5351 /* Record the line number for each TInsn, because a FLIX bundle may be
5352 spread across multiple input lines and individual instructions may be
5353 moved around in some cases. */
5354 orig_insn
.loc_directive_seen
= dwarf2_loc_directive_seen
;
5355 dwarf2_where (&orig_insn
.debug_line
);
5356 dwarf2_consume_line_info ();
5358 xg_add_branch_and_loop_targets (&orig_insn
);
5360 /* Check that immediate value for ENTRY is >= 16. */
5361 if (orig_insn
.opcode
== xtensa_entry_opcode
&& orig_insn
.ntok
>= 3)
5363 expressionS
*exp
= &orig_insn
.tok
[2];
5364 if (exp
->X_op
== O_constant
&& exp
->X_add_number
< 16)
5365 as_warn (_("entry instruction with stack decrement < 16"));
5369 assemble_tokens (opcode, tok, ntok);
5370 expand the tokens from the orig_insn into the
5371 stack of instructions that will not expand
5372 unless required at relaxation time. */
5374 if (!cur_vinsn
.inside_bundle
)
5375 emit_single_op (&orig_insn
);
5376 else /* We are inside a bundle. */
5378 cur_vinsn
.slots
[cur_vinsn
.num_slots
] = orig_insn
;
5379 cur_vinsn
.num_slots
++;
5380 if (*input_line_pointer
== '}'
5381 || *(input_line_pointer
- 1) == '}'
5382 || *(input_line_pointer
- 2) == '}')
5383 finish_vinsn (&cur_vinsn
);
5386 /* We've just emitted a new instruction so clear the list of labels. */
5387 xtensa_clear_insn_labels ();
5391 /* HANDLE_ALIGN hook */
5393 /* For a .align directive, we mark the previous block with the alignment
5394 information. This will be placed in the object file in the
5395 property section corresponding to this section. */
5398 xtensa_handle_align (fragS
*fragP
)
5401 && ! fragP
->tc_frag_data
.is_literal
5402 && (fragP
->fr_type
== rs_align
5403 || fragP
->fr_type
== rs_align_code
)
5404 && fragP
->fr_address
+ fragP
->fr_fix
> 0
5405 && fragP
->fr_offset
> 0
5406 && now_seg
!= bss_section
)
5408 fragP
->tc_frag_data
.is_align
= TRUE
;
5409 fragP
->tc_frag_data
.alignment
= fragP
->fr_offset
;
5412 if (fragP
->fr_type
== rs_align_test
)
5415 count
= fragP
->fr_next
->fr_address
- fragP
->fr_address
- fragP
->fr_fix
;
5417 as_bad_where (fragP
->fr_file
, fragP
->fr_line
,
5418 _("unaligned entry instruction"));
5421 if (linkrelax
&& fragP
->fr_type
== rs_org
)
5422 fragP
->fr_subtype
= RELAX_ORG
;
5426 /* TC_FRAG_INIT hook */
5429 xtensa_frag_init (fragS
*frag
)
5431 xtensa_set_frag_assembly_state (frag
);
5436 md_undefined_symbol (char *name ATTRIBUTE_UNUSED
)
5442 /* Round up a section size to the appropriate boundary. */
5445 md_section_align (segT segment ATTRIBUTE_UNUSED
, valueT size
)
5447 return size
; /* Byte alignment is fine. */
5452 md_pcrel_from (fixS
*fixP
)
5455 static xtensa_insnbuf insnbuf
= NULL
;
5456 static xtensa_insnbuf slotbuf
= NULL
;
5459 xtensa_opcode opcode
;
5462 xtensa_isa isa
= xtensa_default_isa
;
5463 valueT addr
= fixP
->fx_where
+ fixP
->fx_frag
->fr_address
;
5464 bfd_boolean alt_reloc
;
5466 if (fixP
->fx_r_type
== BFD_RELOC_XTENSA_ASM_EXPAND
)
5469 if (fixP
->fx_r_type
== BFD_RELOC_32_PCREL
)
5474 insnbuf
= xtensa_insnbuf_alloc (isa
);
5475 slotbuf
= xtensa_insnbuf_alloc (isa
);
5478 insn_p
= &fixP
->fx_frag
->fr_literal
[fixP
->fx_where
];
5479 xtensa_insnbuf_from_chars (isa
, insnbuf
, (unsigned char *) insn_p
, 0);
5480 fmt
= xtensa_format_decode (isa
, insnbuf
);
5482 if (fmt
== XTENSA_UNDEFINED
)
5483 as_fatal (_("bad instruction format"));
5485 if (decode_reloc (fixP
->fx_r_type
, &slot
, &alt_reloc
) != 0)
5486 as_fatal (_("invalid relocation"));
5488 xtensa_format_get_slot (isa
, fmt
, slot
, insnbuf
, slotbuf
);
5489 opcode
= xtensa_opcode_decode (isa
, fmt
, slot
, slotbuf
);
5491 /* Check for "alternate" relocations (operand not specified). None
5492 of the current uses for these are really PC-relative. */
5493 if (alt_reloc
|| opcode
== xtensa_const16_opcode
)
5495 if (opcode
!= xtensa_l32r_opcode
5496 && opcode
!= xtensa_const16_opcode
)
5497 as_fatal (_("invalid relocation for '%s' instruction"),
5498 xtensa_opcode_name (isa
, opcode
));
5502 opnum
= get_relaxable_immed (opcode
);
5504 if (xtensa_operand_is_PCrelative (isa
, opcode
, opnum
) != 1
5505 || xtensa_operand_do_reloc (isa
, opcode
, opnum
, &opnd_value
, addr
))
5507 as_bad_where (fixP
->fx_file
,
5509 _("invalid relocation for operand %d of '%s'"),
5510 opnum
, xtensa_opcode_name (isa
, opcode
));
5513 return 0 - opnd_value
;
5517 /* TC_FORCE_RELOCATION hook */
5520 xtensa_force_relocation (fixS
*fix
)
5522 switch (fix
->fx_r_type
)
5524 case BFD_RELOC_XTENSA_ASM_EXPAND
:
5525 case BFD_RELOC_XTENSA_SLOT0_ALT
:
5526 case BFD_RELOC_XTENSA_SLOT1_ALT
:
5527 case BFD_RELOC_XTENSA_SLOT2_ALT
:
5528 case BFD_RELOC_XTENSA_SLOT3_ALT
:
5529 case BFD_RELOC_XTENSA_SLOT4_ALT
:
5530 case BFD_RELOC_XTENSA_SLOT5_ALT
:
5531 case BFD_RELOC_XTENSA_SLOT6_ALT
:
5532 case BFD_RELOC_XTENSA_SLOT7_ALT
:
5533 case BFD_RELOC_XTENSA_SLOT8_ALT
:
5534 case BFD_RELOC_XTENSA_SLOT9_ALT
:
5535 case BFD_RELOC_XTENSA_SLOT10_ALT
:
5536 case BFD_RELOC_XTENSA_SLOT11_ALT
:
5537 case BFD_RELOC_XTENSA_SLOT12_ALT
:
5538 case BFD_RELOC_XTENSA_SLOT13_ALT
:
5539 case BFD_RELOC_XTENSA_SLOT14_ALT
:
5545 if (linkrelax
&& fix
->fx_addsy
5546 && relaxable_section (S_GET_SEGMENT (fix
->fx_addsy
)))
5549 return generic_force_reloc (fix
);
5553 /* TC_VALIDATE_FIX_SUB hook */
5556 xtensa_validate_fix_sub (fixS
*fix
)
5558 segT add_symbol_segment
, sub_symbol_segment
;
5560 /* The difference of two symbols should be resolved by the assembler when
5561 linkrelax is not set. If the linker may relax the section containing
5562 the symbols, then an Xtensa DIFF relocation must be generated so that
5563 the linker knows to adjust the difference value. */
5564 if (!linkrelax
|| fix
->fx_addsy
== NULL
)
5567 /* Make sure both symbols are in the same segment, and that segment is
5568 "normal" and relaxable. If the segment is not "normal", then the
5569 fix is not valid. If the segment is not "relaxable", then the fix
5570 should have been handled earlier. */
5571 add_symbol_segment
= S_GET_SEGMENT (fix
->fx_addsy
);
5572 if (! SEG_NORMAL (add_symbol_segment
) ||
5573 ! relaxable_section (add_symbol_segment
))
5575 sub_symbol_segment
= S_GET_SEGMENT (fix
->fx_subsy
);
5576 return (sub_symbol_segment
== add_symbol_segment
);
5580 /* NO_PSEUDO_DOT hook */
5582 /* This function has nothing to do with pseudo dots, but this is the
5583 nearest macro to where the check needs to take place. FIXME: This
5587 xtensa_check_inside_bundle (void)
5589 if (cur_vinsn
.inside_bundle
&& input_line_pointer
[-1] == '.')
5590 as_bad (_("directives are not valid inside bundles"));
5592 /* This function must always return FALSE because it is called via a
5593 macro that has nothing to do with bundling. */
5598 /* md_elf_section_change_hook */
5601 xtensa_elf_section_change_hook (void)
5603 /* Set up the assembly state. */
5604 if (!frag_now
->tc_frag_data
.is_assembly_state_set
)
5605 xtensa_set_frag_assembly_state (frag_now
);
5609 /* tc_fix_adjustable hook */
5612 xtensa_fix_adjustable (fixS
*fixP
)
5614 /* An offset is not allowed in combination with the difference of two
5615 symbols, but that cannot be easily detected after a local symbol
5616 has been adjusted to a (section+offset) form. Return 0 so that such
5617 an fix will not be adjusted. */
5618 if (fixP
->fx_subsy
&& fixP
->fx_addsy
&& fixP
->fx_offset
5619 && relaxable_section (S_GET_SEGMENT (fixP
->fx_subsy
)))
5622 /* We need the symbol name for the VTABLE entries. */
5623 if (fixP
->fx_r_type
== BFD_RELOC_VTABLE_INHERIT
5624 || fixP
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
5631 /* tc_symbol_new_hook */
5633 symbolS
*expr_symbols
= NULL
;
5636 xtensa_symbol_new_hook (symbolS
*sym
)
5638 if (S_GET_SEGMENT (sym
) == expr_section
)
5640 symbol_get_tc (sym
)->next_expr_symbol
= expr_symbols
;
5647 md_apply_fix (fixS
*fixP
, valueT
*valP
, segT seg
)
5649 char *const fixpos
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
5652 /* Subtracted symbols are only allowed for a few relocation types, and
5653 unless linkrelax is enabled, they should not make it to this point. */
5654 if (fixP
->fx_subsy
&& !(linkrelax
&& (fixP
->fx_r_type
== BFD_RELOC_32
5655 || fixP
->fx_r_type
== BFD_RELOC_16
5656 || fixP
->fx_r_type
== BFD_RELOC_8
)))
5657 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("expression too complex"));
5659 switch (fixP
->fx_r_type
)
5661 case BFD_RELOC_32_PCREL
:
5667 switch (fixP
->fx_r_type
)
5670 fixP
->fx_r_type
= BFD_RELOC_XTENSA_DIFF8
;
5673 fixP
->fx_r_type
= BFD_RELOC_XTENSA_DIFF16
;
5676 fixP
->fx_r_type
= BFD_RELOC_XTENSA_DIFF32
;
5682 /* An offset is only allowed when it results from adjusting a
5683 local symbol into a section-relative offset. If the offset
5684 came from the original expression, tc_fix_adjustable will have
5685 prevented the fix from being converted to a section-relative
5686 form so that we can flag the error here. */
5687 if (fixP
->fx_offset
!= 0 && !symbol_section_p (fixP
->fx_addsy
))
5688 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5689 _("cannot represent subtraction with an offset"));
5691 val
= (S_GET_VALUE (fixP
->fx_addsy
) + fixP
->fx_offset
5692 - S_GET_VALUE (fixP
->fx_subsy
));
5694 /* The difference value gets written out, and the DIFF reloc
5695 identifies the address of the subtracted symbol (i.e., the one
5696 with the lowest address). */
5698 fixP
->fx_offset
-= val
;
5699 fixP
->fx_subsy
= NULL
;
5701 else if (! fixP
->fx_addsy
)
5708 case BFD_RELOC_XTENSA_PLT
:
5709 md_number_to_chars (fixpos
, val
, fixP
->fx_size
);
5710 fixP
->fx_no_overflow
= 0; /* Use the standard overflow check. */
5713 case BFD_RELOC_XTENSA_SLOT0_OP
:
5714 case BFD_RELOC_XTENSA_SLOT1_OP
:
5715 case BFD_RELOC_XTENSA_SLOT2_OP
:
5716 case BFD_RELOC_XTENSA_SLOT3_OP
:
5717 case BFD_RELOC_XTENSA_SLOT4_OP
:
5718 case BFD_RELOC_XTENSA_SLOT5_OP
:
5719 case BFD_RELOC_XTENSA_SLOT6_OP
:
5720 case BFD_RELOC_XTENSA_SLOT7_OP
:
5721 case BFD_RELOC_XTENSA_SLOT8_OP
:
5722 case BFD_RELOC_XTENSA_SLOT9_OP
:
5723 case BFD_RELOC_XTENSA_SLOT10_OP
:
5724 case BFD_RELOC_XTENSA_SLOT11_OP
:
5725 case BFD_RELOC_XTENSA_SLOT12_OP
:
5726 case BFD_RELOC_XTENSA_SLOT13_OP
:
5727 case BFD_RELOC_XTENSA_SLOT14_OP
:
5730 /* Write the tentative value of a PC-relative relocation to a
5731 local symbol into the instruction. The value will be ignored
5732 by the linker, and it makes the object file disassembly
5733 readable when all branch targets are encoded in relocations. */
5735 assert (fixP
->fx_addsy
);
5736 if (S_GET_SEGMENT (fixP
->fx_addsy
) == seg
5737 && !S_FORCE_RELOC (fixP
->fx_addsy
, 1))
5739 val
= (S_GET_VALUE (fixP
->fx_addsy
) + fixP
->fx_offset
5740 - md_pcrel_from (fixP
));
5741 (void) xg_apply_fix_value (fixP
, val
);
5744 else if (! fixP
->fx_addsy
)
5747 if (xg_apply_fix_value (fixP
, val
))
5752 case BFD_RELOC_XTENSA_ASM_EXPAND
:
5753 case BFD_RELOC_XTENSA_SLOT0_ALT
:
5754 case BFD_RELOC_XTENSA_SLOT1_ALT
:
5755 case BFD_RELOC_XTENSA_SLOT2_ALT
:
5756 case BFD_RELOC_XTENSA_SLOT3_ALT
:
5757 case BFD_RELOC_XTENSA_SLOT4_ALT
:
5758 case BFD_RELOC_XTENSA_SLOT5_ALT
:
5759 case BFD_RELOC_XTENSA_SLOT6_ALT
:
5760 case BFD_RELOC_XTENSA_SLOT7_ALT
:
5761 case BFD_RELOC_XTENSA_SLOT8_ALT
:
5762 case BFD_RELOC_XTENSA_SLOT9_ALT
:
5763 case BFD_RELOC_XTENSA_SLOT10_ALT
:
5764 case BFD_RELOC_XTENSA_SLOT11_ALT
:
5765 case BFD_RELOC_XTENSA_SLOT12_ALT
:
5766 case BFD_RELOC_XTENSA_SLOT13_ALT
:
5767 case BFD_RELOC_XTENSA_SLOT14_ALT
:
5768 /* These all need to be resolved at link-time. Do nothing now. */
5771 case BFD_RELOC_VTABLE_INHERIT
:
5772 case BFD_RELOC_VTABLE_ENTRY
:
5777 as_bad (_("unhandled local relocation fix %s"),
5778 bfd_get_reloc_code_name (fixP
->fx_r_type
));
5784 md_atof (int type
, char *litP
, int *sizeP
)
5786 return ieee_md_atof (type
, litP
, sizeP
, target_big_endian
);
5791 md_estimate_size_before_relax (fragS
*fragP
, segT seg ATTRIBUTE_UNUSED
)
5793 return total_frag_text_expansion (fragP
);
5797 /* Translate internal representation of relocation info to BFD target
5801 tc_gen_reloc (asection
*section ATTRIBUTE_UNUSED
, fixS
*fixp
)
5805 reloc
= (arelent
*) xmalloc (sizeof (arelent
));
5806 reloc
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
5807 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
5808 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
5810 /* Make sure none of our internal relocations make it this far.
5811 They'd better have been fully resolved by this point. */
5812 assert ((int) fixp
->fx_r_type
> 0);
5814 reloc
->addend
= fixp
->fx_offset
;
5816 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
, fixp
->fx_r_type
);
5817 if (reloc
->howto
== NULL
)
5819 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
5820 _("cannot represent `%s' relocation in object file"),
5821 bfd_get_reloc_code_name (fixp
->fx_r_type
));
5822 free (reloc
->sym_ptr_ptr
);
5827 if (!fixp
->fx_pcrel
!= !reloc
->howto
->pc_relative
)
5828 as_fatal (_("internal error; cannot generate `%s' relocation"),
5829 bfd_get_reloc_code_name (fixp
->fx_r_type
));
5835 /* Checks for resource conflicts between instructions. */
5837 /* The func unit stuff could be implemented as bit-vectors rather
5838 than the iterative approach here. If it ends up being too
5839 slow, we will switch it. */
5842 new_resource_table (void *data
,
5845 unit_num_copies_func uncf
,
5846 opcode_num_units_func onuf
,
5847 opcode_funcUnit_use_unit_func ouuf
,
5848 opcode_funcUnit_use_stage_func ousf
)
5851 resource_table
*rt
= (resource_table
*) xmalloc (sizeof (resource_table
));
5853 rt
->cycles
= cycles
;
5854 rt
->allocated_cycles
= cycles
;
5856 rt
->unit_num_copies
= uncf
;
5857 rt
->opcode_num_units
= onuf
;
5858 rt
->opcode_unit_use
= ouuf
;
5859 rt
->opcode_unit_stage
= ousf
;
5861 rt
->units
= (unsigned char **) xcalloc (cycles
, sizeof (unsigned char *));
5862 for (i
= 0; i
< cycles
; i
++)
5863 rt
->units
[i
] = (unsigned char *) xcalloc (nu
, sizeof (unsigned char));
5870 clear_resource_table (resource_table
*rt
)
5873 for (i
= 0; i
< rt
->allocated_cycles
; i
++)
5874 for (j
= 0; j
< rt
->num_units
; j
++)
5875 rt
->units
[i
][j
] = 0;
5879 /* We never shrink it, just fake it into thinking so. */
5882 resize_resource_table (resource_table
*rt
, int cycles
)
5886 rt
->cycles
= cycles
;
5887 if (cycles
<= rt
->allocated_cycles
)
5890 old_cycles
= rt
->allocated_cycles
;
5891 rt
->allocated_cycles
= cycles
;
5893 rt
->units
= xrealloc (rt
->units
,
5894 rt
->allocated_cycles
* sizeof (unsigned char *));
5895 for (i
= 0; i
< old_cycles
; i
++)
5896 rt
->units
[i
] = xrealloc (rt
->units
[i
],
5897 rt
->num_units
* sizeof (unsigned char));
5898 for (i
= old_cycles
; i
< cycles
; i
++)
5899 rt
->units
[i
] = xcalloc (rt
->num_units
, sizeof (unsigned char));
5904 resources_available (resource_table
*rt
, xtensa_opcode opcode
, int cycle
)
5907 int uses
= (rt
->opcode_num_units
) (rt
->data
, opcode
);
5909 for (i
= 0; i
< uses
; i
++)
5911 xtensa_funcUnit unit
= (rt
->opcode_unit_use
) (rt
->data
, opcode
, i
);
5912 int stage
= (rt
->opcode_unit_stage
) (rt
->data
, opcode
, i
);
5913 int copies_in_use
= rt
->units
[stage
+ cycle
][unit
];
5914 int copies
= (rt
->unit_num_copies
) (rt
->data
, unit
);
5915 if (copies_in_use
>= copies
)
5923 reserve_resources (resource_table
*rt
, xtensa_opcode opcode
, int cycle
)
5926 int uses
= (rt
->opcode_num_units
) (rt
->data
, opcode
);
5928 for (i
= 0; i
< uses
; i
++)
5930 xtensa_funcUnit unit
= (rt
->opcode_unit_use
) (rt
->data
, opcode
, i
);
5931 int stage
= (rt
->opcode_unit_stage
) (rt
->data
, opcode
, i
);
5932 /* Note that this allows resources to be oversubscribed. That's
5933 essential to the way the optional scheduler works.
5934 resources_available reports when a resource is over-subscribed,
5935 so it's easy to tell. */
5936 rt
->units
[stage
+ cycle
][unit
]++;
5942 release_resources (resource_table
*rt
, xtensa_opcode opcode
, int cycle
)
5945 int uses
= (rt
->opcode_num_units
) (rt
->data
, opcode
);
5947 for (i
= 0; i
< uses
; i
++)
5949 xtensa_funcUnit unit
= (rt
->opcode_unit_use
) (rt
->data
, opcode
, i
);
5950 int stage
= (rt
->opcode_unit_stage
) (rt
->data
, opcode
, i
);
5951 assert (rt
->units
[stage
+ cycle
][unit
] > 0);
5952 rt
->units
[stage
+ cycle
][unit
]--;
5957 /* Wrapper functions make parameterized resource reservation
5961 opcode_funcUnit_use_unit (void *data
, xtensa_opcode opcode
, int idx
)
5963 xtensa_funcUnit_use
*use
= xtensa_opcode_funcUnit_use (data
, opcode
, idx
);
5969 opcode_funcUnit_use_stage (void *data
, xtensa_opcode opcode
, int idx
)
5971 xtensa_funcUnit_use
*use
= xtensa_opcode_funcUnit_use (data
, opcode
, idx
);
5976 /* Note that this function does not check issue constraints, but
5977 solely whether the hardware is available to execute the given
5978 instructions together. It also doesn't check if the tinsns
5979 write the same state, or access the same tieports. That is
5980 checked by check_t1_t2_reads_and_writes. */
5983 resources_conflict (vliw_insn
*vinsn
)
5986 static resource_table
*rt
= NULL
;
5988 /* This is the most common case by far. Optimize it. */
5989 if (vinsn
->num_slots
== 1)
5994 xtensa_isa isa
= xtensa_default_isa
;
5995 rt
= new_resource_table
5996 (isa
, xtensa_isa_num_pipe_stages (isa
),
5997 xtensa_isa_num_funcUnits (isa
),
5998 (unit_num_copies_func
) xtensa_funcUnit_num_copies
,
5999 (opcode_num_units_func
) xtensa_opcode_num_funcUnit_uses
,
6000 opcode_funcUnit_use_unit
,
6001 opcode_funcUnit_use_stage
);
6004 clear_resource_table (rt
);
6006 for (i
= 0; i
< vinsn
->num_slots
; i
++)
6008 if (!resources_available (rt
, vinsn
->slots
[i
].opcode
, 0))
6010 reserve_resources (rt
, vinsn
->slots
[i
].opcode
, 0);
6017 /* finish_vinsn, emit_single_op and helper functions. */
6019 static bfd_boolean
find_vinsn_conflicts (vliw_insn
*);
6020 static xtensa_format
xg_find_narrowest_format (vliw_insn
*);
6021 static void xg_assemble_vliw_tokens (vliw_insn
*);
6024 /* We have reached the end of a bundle; emit into the frag. */
6027 finish_vinsn (vliw_insn
*vinsn
)
6034 if (find_vinsn_conflicts (vinsn
))
6036 xg_clear_vinsn (vinsn
);
6040 /* First, find a format that works. */
6041 if (vinsn
->format
== XTENSA_UNDEFINED
)
6042 vinsn
->format
= xg_find_narrowest_format (vinsn
);
6044 if (vinsn
->format
== XTENSA_UNDEFINED
)
6046 as_where (&file_name
, &line
);
6047 as_bad_where (file_name
, line
,
6048 _("couldn't find a valid instruction format"));
6049 fprintf (stderr
, _(" ops were: "));
6050 for (i
= 0; i
< vinsn
->num_slots
; i
++)
6051 fprintf (stderr
, _(" %s;"),
6052 xtensa_opcode_name (xtensa_default_isa
,
6053 vinsn
->slots
[i
].opcode
));
6054 fprintf (stderr
, _("\n"));
6055 xg_clear_vinsn (vinsn
);
6059 if (vinsn
->num_slots
6060 != xtensa_format_num_slots (xtensa_default_isa
, vinsn
->format
))
6062 as_bad (_("format '%s' allows %d slots, but there are %d opcodes"),
6063 xtensa_format_name (xtensa_default_isa
, vinsn
->format
),
6064 xtensa_format_num_slots (xtensa_default_isa
, vinsn
->format
),
6066 xg_clear_vinsn (vinsn
);
6070 if (resources_conflict (vinsn
))
6072 as_where (&file_name
, &line
);
6073 as_bad_where (file_name
, line
, _("illegal resource usage in bundle"));
6074 fprintf (stderr
, " ops were: ");
6075 for (i
= 0; i
< vinsn
->num_slots
; i
++)
6076 fprintf (stderr
, " %s;",
6077 xtensa_opcode_name (xtensa_default_isa
,
6078 vinsn
->slots
[i
].opcode
));
6079 fprintf (stderr
, "\n");
6080 xg_clear_vinsn (vinsn
);
6084 for (i
= 0; i
< vinsn
->num_slots
; i
++)
6086 if (vinsn
->slots
[i
].opcode
!= XTENSA_UNDEFINED
)
6088 symbolS
*lit_sym
= NULL
;
6090 bfd_boolean e
= FALSE
;
6091 bfd_boolean saved_density
= density_supported
;
6093 /* We don't want to narrow ops inside multi-slot bundles. */
6094 if (vinsn
->num_slots
> 1)
6095 density_supported
= FALSE
;
6097 istack_init (&slotstack
);
6098 if (vinsn
->slots
[i
].opcode
== xtensa_nop_opcode
)
6100 vinsn
->slots
[i
].opcode
=
6101 xtensa_format_slot_nop_opcode (xtensa_default_isa
,
6103 vinsn
->slots
[i
].ntok
= 0;
6106 if (xg_expand_assembly_insn (&slotstack
, &vinsn
->slots
[i
]))
6112 density_supported
= saved_density
;
6116 xg_clear_vinsn (vinsn
);
6120 for (j
= 0; j
< slotstack
.ninsn
; j
++)
6122 TInsn
*insn
= &slotstack
.insn
[j
];
6123 if (insn
->insn_type
== ITYPE_LITERAL
)
6125 assert (lit_sym
== NULL
);
6126 lit_sym
= xg_assemble_literal (insn
);
6130 assert (insn
->insn_type
== ITYPE_INSN
);
6132 xg_resolve_literals (insn
, lit_sym
);
6133 if (j
!= slotstack
.ninsn
- 1)
6134 emit_single_op (insn
);
6138 if (vinsn
->num_slots
> 1)
6140 if (opcode_fits_format_slot
6141 (slotstack
.insn
[slotstack
.ninsn
- 1].opcode
,
6144 vinsn
->slots
[i
] = slotstack
.insn
[slotstack
.ninsn
- 1];
6148 emit_single_op (&slotstack
.insn
[slotstack
.ninsn
- 1]);
6149 if (vinsn
->format
== XTENSA_UNDEFINED
)
6150 vinsn
->slots
[i
].opcode
= xtensa_nop_opcode
;
6152 vinsn
->slots
[i
].opcode
6153 = xtensa_format_slot_nop_opcode (xtensa_default_isa
,
6156 vinsn
->slots
[i
].ntok
= 0;
6161 vinsn
->slots
[0] = slotstack
.insn
[slotstack
.ninsn
- 1];
6162 vinsn
->format
= XTENSA_UNDEFINED
;
6167 /* Now check resource conflicts on the modified bundle. */
6168 if (resources_conflict (vinsn
))
6170 as_where (&file_name
, &line
);
6171 as_bad_where (file_name
, line
, _("illegal resource usage in bundle"));
6172 fprintf (stderr
, " ops were: ");
6173 for (i
= 0; i
< vinsn
->num_slots
; i
++)
6174 fprintf (stderr
, " %s;",
6175 xtensa_opcode_name (xtensa_default_isa
,
6176 vinsn
->slots
[i
].opcode
));
6177 fprintf (stderr
, "\n");
6178 xg_clear_vinsn (vinsn
);
6182 /* First, find a format that works. */
6183 if (vinsn
->format
== XTENSA_UNDEFINED
)
6184 vinsn
->format
= xg_find_narrowest_format (vinsn
);
6186 xg_assemble_vliw_tokens (vinsn
);
6188 xg_clear_vinsn (vinsn
);
6192 /* Given an vliw instruction, what conflicts are there in register
6193 usage and in writes to states and queues?
6195 This function does two things:
6196 1. Reports an error when a vinsn contains illegal combinations
6197 of writes to registers states or queues.
6198 2. Marks individual tinsns as not relaxable if the combination
6199 contains antidependencies.
6201 Job 2 handles things like swap semantics in instructions that need
6202 to be relaxed. For example,
6206 normally would be relaxed to
6211 _but_, if the above instruction is bundled with an a0 reader, e.g.,
6213 { addi a0, a1, 10000 ; add a2, a0, a4 ; }
6215 then we can't relax it into
6218 { add a0, a1, a0 ; add a2, a0, a4 ; }
6220 because the value of a0 is trashed before the second add can read it. */
6222 static char check_t1_t2_reads_and_writes (TInsn
*, TInsn
*);
6225 find_vinsn_conflicts (vliw_insn
*vinsn
)
6229 xtensa_isa isa
= xtensa_default_isa
;
6231 assert (!past_xtensa_end
);
6233 for (i
= 0 ; i
< vinsn
->num_slots
; i
++)
6235 TInsn
*op1
= &vinsn
->slots
[i
];
6236 if (op1
->is_specific_opcode
)
6237 op1
->keep_wide
= TRUE
;
6239 op1
->keep_wide
= FALSE
;
6242 for (i
= 0 ; i
< vinsn
->num_slots
; i
++)
6244 TInsn
*op1
= &vinsn
->slots
[i
];
6246 if (xtensa_opcode_is_branch (isa
, op1
->opcode
) == 1)
6249 for (j
= 0; j
< vinsn
->num_slots
; j
++)
6253 TInsn
*op2
= &vinsn
->slots
[j
];
6254 char conflict_type
= check_t1_t2_reads_and_writes (op1
, op2
);
6255 switch (conflict_type
)
6258 as_bad (_("opcodes '%s' (slot %d) and '%s' (slot %d) write the same register"),
6259 xtensa_opcode_name (isa
, op1
->opcode
), i
,
6260 xtensa_opcode_name (isa
, op2
->opcode
), j
);
6263 as_bad (_("opcodes '%s' (slot %d) and '%s' (slot %d) write the same state"),
6264 xtensa_opcode_name (isa
, op1
->opcode
), i
,
6265 xtensa_opcode_name (isa
, op2
->opcode
), j
);
6268 as_bad (_("opcodes '%s' (slot %d) and '%s' (slot %d) write the same port"),
6269 xtensa_opcode_name (isa
, op1
->opcode
), i
,
6270 xtensa_opcode_name (isa
, op2
->opcode
), j
);
6273 as_bad (_("opcodes '%s' (slot %d) and '%s' (slot %d) both have volatile port accesses"),
6274 xtensa_opcode_name (isa
, op1
->opcode
), i
,
6275 xtensa_opcode_name (isa
, op2
->opcode
), j
);
6278 /* Everything is OK. */
6281 op2
->is_specific_opcode
= (op2
->is_specific_opcode
6282 || conflict_type
== 'a');
6289 as_bad (_("multiple branches or jumps in the same bundle"));
6297 /* Check how the state used by t1 and t2 relate.
6300 case A: t1 reads a register t2 writes (an antidependency within a bundle)
6301 case B: no relationship between what is read and written (both could
6302 read the same reg though)
6303 case C: t1 writes a register t2 writes (a register conflict within a
6305 case D: t1 writes a state that t2 also writes
6306 case E: t1 writes a tie queue that t2 also writes
6307 case F: two volatile queue accesses
6311 check_t1_t2_reads_and_writes (TInsn
*t1
, TInsn
*t2
)
6313 xtensa_isa isa
= xtensa_default_isa
;
6314 xtensa_regfile t1_regfile
, t2_regfile
;
6316 int t1_base_reg
, t1_last_reg
;
6317 int t2_base_reg
, t2_last_reg
;
6318 char t1_inout
, t2_inout
;
6320 char conflict
= 'b';
6325 bfd_boolean t1_volatile
= FALSE
;
6326 bfd_boolean t2_volatile
= FALSE
;
6328 /* Check registers. */
6329 for (j
= 0; j
< t2
->ntok
; j
++)
6331 if (xtensa_operand_is_register (isa
, t2
->opcode
, j
) != 1)
6334 t2_regfile
= xtensa_operand_regfile (isa
, t2
->opcode
, j
);
6335 t2_base_reg
= t2
->tok
[j
].X_add_number
;
6336 t2_last_reg
= t2_base_reg
+ xtensa_operand_num_regs (isa
, t2
->opcode
, j
);
6338 for (i
= 0; i
< t1
->ntok
; i
++)
6340 if (xtensa_operand_is_register (isa
, t1
->opcode
, i
) != 1)
6343 t1_regfile
= xtensa_operand_regfile (isa
, t1
->opcode
, i
);
6345 if (t1_regfile
!= t2_regfile
)
6348 t1_inout
= xtensa_operand_inout (isa
, t1
->opcode
, i
);
6349 t2_inout
= xtensa_operand_inout (isa
, t2
->opcode
, j
);
6351 if (xtensa_operand_is_known_reg (isa
, t1
->opcode
, i
) == 0
6352 || xtensa_operand_is_known_reg (isa
, t2
->opcode
, j
) == 0)
6354 if (t1_inout
== 'm' || t1_inout
== 'o'
6355 || t2_inout
== 'm' || t2_inout
== 'o')
6362 t1_base_reg
= t1
->tok
[i
].X_add_number
;
6363 t1_last_reg
= (t1_base_reg
6364 + xtensa_operand_num_regs (isa
, t1
->opcode
, i
));
6366 for (t1_reg
= t1_base_reg
; t1_reg
< t1_last_reg
; t1_reg
++)
6368 for (t2_reg
= t2_base_reg
; t2_reg
< t2_last_reg
; t2_reg
++)
6370 if (t1_reg
!= t2_reg
)
6373 if (t2_inout
== 'i' && (t1_inout
== 'm' || t1_inout
== 'o'))
6379 if (t1_inout
== 'i' && (t2_inout
== 'm' || t2_inout
== 'o'))
6385 if (t1_inout
!= 'i' && t2_inout
!= 'i')
6393 t1_states
= xtensa_opcode_num_stateOperands (isa
, t1
->opcode
);
6394 t2_states
= xtensa_opcode_num_stateOperands (isa
, t2
->opcode
);
6395 for (j
= 0; j
< t2_states
; j
++)
6397 xtensa_state t2_so
= xtensa_stateOperand_state (isa
, t2
->opcode
, j
);
6398 t2_inout
= xtensa_stateOperand_inout (isa
, t2
->opcode
, j
);
6399 for (i
= 0; i
< t1_states
; i
++)
6401 xtensa_state t1_so
= xtensa_stateOperand_state (isa
, t1
->opcode
, i
);
6402 t1_inout
= xtensa_stateOperand_inout (isa
, t1
->opcode
, i
);
6406 if (t2_inout
== 'i' && (t1_inout
== 'm' || t1_inout
== 'o'))
6412 if (t1_inout
== 'i' && (t2_inout
== 'm' || t2_inout
== 'o'))
6418 if (t1_inout
!= 'i' && t2_inout
!= 'i')
6423 /* Check tieports. */
6424 t1_interfaces
= xtensa_opcode_num_interfaceOperands (isa
, t1
->opcode
);
6425 t2_interfaces
= xtensa_opcode_num_interfaceOperands (isa
, t2
->opcode
);
6426 for (j
= 0; j
< t2_interfaces
; j
++)
6428 xtensa_interface t2_int
6429 = xtensa_interfaceOperand_interface (isa
, t2
->opcode
, j
);
6430 int t2_class
= xtensa_interface_class_id (isa
, t2_int
);
6432 t2_inout
= xtensa_interface_inout (isa
, t2_int
);
6433 if (xtensa_interface_has_side_effect (isa
, t2_int
) == 1)
6436 for (i
= 0; i
< t1_interfaces
; i
++)
6438 xtensa_interface t1_int
6439 = xtensa_interfaceOperand_interface (isa
, t1
->opcode
, j
);
6440 int t1_class
= xtensa_interface_class_id (isa
, t1_int
);
6442 t1_inout
= xtensa_interface_inout (isa
, t1_int
);
6443 if (xtensa_interface_has_side_effect (isa
, t1_int
) == 1)
6446 if (t1_volatile
&& t2_volatile
&& (t1_class
== t2_class
))
6449 if (t1_int
!= t2_int
)
6452 if (t2_inout
== 'i' && t1_inout
== 'o')
6458 if (t1_inout
== 'i' && t2_inout
== 'o')
6464 if (t1_inout
!= 'i' && t2_inout
!= 'i')
6473 static xtensa_format
6474 xg_find_narrowest_format (vliw_insn
*vinsn
)
6476 /* Right now we assume that the ops within the vinsn are properly
6477 ordered for the slots that the programmer wanted them in. In
6478 other words, we don't rearrange the ops in hopes of finding a
6479 better format. The scheduler handles that. */
6481 xtensa_isa isa
= xtensa_default_isa
;
6482 xtensa_format format
;
6483 vliw_insn v_copy
= *vinsn
;
6484 xtensa_opcode nop_opcode
= xtensa_nop_opcode
;
6486 if (vinsn
->num_slots
== 1)
6487 return xg_get_single_format (vinsn
->slots
[0].opcode
);
6489 for (format
= 0; format
< xtensa_isa_num_formats (isa
); format
++)
6492 if (xtensa_format_num_slots (isa
, format
) == v_copy
.num_slots
)
6496 for (slot
= 0; slot
< v_copy
.num_slots
; slot
++)
6498 if (v_copy
.slots
[slot
].opcode
== nop_opcode
)
6500 v_copy
.slots
[slot
].opcode
=
6501 xtensa_format_slot_nop_opcode (isa
, format
, slot
);
6502 v_copy
.slots
[slot
].ntok
= 0;
6505 if (opcode_fits_format_slot (v_copy
.slots
[slot
].opcode
,
6508 else if (v_copy
.num_slots
> 1)
6511 /* Try the widened version. */
6512 if (!v_copy
.slots
[slot
].keep_wide
6513 && !v_copy
.slots
[slot
].is_specific_opcode
6514 && xg_is_single_relaxable_insn (&v_copy
.slots
[slot
],
6516 && opcode_fits_format_slot (widened
.opcode
,
6519 v_copy
.slots
[slot
] = widened
;
6524 if (fit
== v_copy
.num_slots
)
6527 xtensa_format_encode (isa
, format
, vinsn
->insnbuf
);
6528 vinsn
->format
= format
;
6534 if (format
== xtensa_isa_num_formats (isa
))
6535 return XTENSA_UNDEFINED
;
6541 /* Return the additional space needed in a frag
6542 for possible relaxations of any ops in a VLIW insn.
6543 Also fill out the relaxations that might be required of
6544 each tinsn in the vinsn. */
6547 relaxation_requirements (vliw_insn
*vinsn
, bfd_boolean
*pfinish_frag
)
6549 bfd_boolean finish_frag
= FALSE
;
6550 int extra_space
= 0;
6553 for (slot
= 0; slot
< vinsn
->num_slots
; slot
++)
6555 TInsn
*tinsn
= &vinsn
->slots
[slot
];
6556 if (!tinsn_has_symbolic_operands (tinsn
))
6558 /* A narrow instruction could be widened later to help
6559 alignment issues. */
6560 if (xg_is_single_relaxable_insn (tinsn
, 0, TRUE
)
6561 && !tinsn
->is_specific_opcode
6562 && vinsn
->num_slots
== 1)
6564 /* Difference in bytes between narrow and wide insns... */
6566 tinsn
->subtype
= RELAX_NARROW
;
6571 if (workaround_b_j_loop_end
6572 && tinsn
->opcode
== xtensa_jx_opcode
6573 && use_transform ())
6575 /* Add 2 of these. */
6576 extra_space
+= 3; /* for the nop size */
6577 tinsn
->subtype
= RELAX_ADD_NOP_IF_PRE_LOOP_END
;
6580 /* Need to assemble it with space for the relocation. */
6581 if (xg_is_relaxable_insn (tinsn
, 0)
6582 && !tinsn
->is_specific_opcode
)
6584 int max_size
= xg_get_max_insn_widen_size (tinsn
->opcode
);
6585 int max_literal_size
=
6586 xg_get_max_insn_widen_literal_size (tinsn
->opcode
);
6588 tinsn
->literal_space
= max_literal_size
;
6590 tinsn
->subtype
= RELAX_IMMED
;
6591 extra_space
+= max_size
;
6595 /* A fix record will be added for this instruction prior
6596 to relaxation, so make it end the frag. */
6601 *pfinish_frag
= finish_frag
;
6607 bundle_tinsn (TInsn
*tinsn
, vliw_insn
*vinsn
)
6609 xtensa_isa isa
= xtensa_default_isa
;
6610 int slot
, chosen_slot
;
6612 vinsn
->format
= xg_get_single_format (tinsn
->opcode
);
6613 assert (vinsn
->format
!= XTENSA_UNDEFINED
);
6614 vinsn
->num_slots
= xtensa_format_num_slots (isa
, vinsn
->format
);
6616 chosen_slot
= xg_get_single_slot (tinsn
->opcode
);
6617 for (slot
= 0; slot
< vinsn
->num_slots
; slot
++)
6619 if (slot
== chosen_slot
)
6620 vinsn
->slots
[slot
] = *tinsn
;
6623 vinsn
->slots
[slot
].opcode
=
6624 xtensa_format_slot_nop_opcode (isa
, vinsn
->format
, slot
);
6625 vinsn
->slots
[slot
].ntok
= 0;
6626 vinsn
->slots
[slot
].insn_type
= ITYPE_INSN
;
6633 emit_single_op (TInsn
*orig_insn
)
6636 IStack istack
; /* put instructions into here */
6637 symbolS
*lit_sym
= NULL
;
6638 symbolS
*label_sym
= NULL
;
6640 istack_init (&istack
);
6642 /* Special-case for "movi aX, foo" which is guaranteed to need relaxing.
6643 Because the scheduling and bundling characteristics of movi and
6644 l32r or const16 are so different, we can do much better if we relax
6645 it prior to scheduling and bundling, rather than after. */
6646 if ((orig_insn
->opcode
== xtensa_movi_opcode
6647 || orig_insn
->opcode
== xtensa_movi_n_opcode
)
6648 && !cur_vinsn
.inside_bundle
6649 && (orig_insn
->tok
[1].X_op
== O_symbol
6650 || orig_insn
->tok
[1].X_op
== O_pltrel
)
6651 && !orig_insn
->is_specific_opcode
&& use_transform ())
6652 xg_assembly_relax (&istack
, orig_insn
, now_seg
, frag_now
, 0, 1, 0);
6654 if (xg_expand_assembly_insn (&istack
, orig_insn
))
6657 for (i
= 0; i
< istack
.ninsn
; i
++)
6659 TInsn
*insn
= &istack
.insn
[i
];
6660 switch (insn
->insn_type
)
6663 assert (lit_sym
== NULL
);
6664 lit_sym
= xg_assemble_literal (insn
);
6668 static int relaxed_sym_idx
= 0;
6669 char *label
= xmalloc (strlen (FAKE_LABEL_NAME
) + 12);
6670 sprintf (label
, "%s_rl_%x", FAKE_LABEL_NAME
, relaxed_sym_idx
++);
6672 assert (label_sym
== NULL
);
6673 label_sym
= symbol_find_or_make (label
);
6682 xg_resolve_literals (insn
, lit_sym
);
6684 xg_resolve_labels (insn
, label_sym
);
6686 bundle_tinsn (insn
, &v
);
6701 total_frag_text_expansion (fragS
*fragP
)
6704 int total_expansion
= 0;
6706 for (slot
= 0; slot
< MAX_SLOTS
; slot
++)
6707 total_expansion
+= fragP
->tc_frag_data
.text_expansion
[slot
];
6709 return total_expansion
;
6713 /* Emit a vliw instruction to the current fragment. */
6716 xg_assemble_vliw_tokens (vliw_insn
*vinsn
)
6718 bfd_boolean finish_frag
;
6719 bfd_boolean is_jump
= FALSE
;
6720 bfd_boolean is_branch
= FALSE
;
6721 xtensa_isa isa
= xtensa_default_isa
;
6726 struct dwarf2_line_info debug_line
;
6727 bfd_boolean loc_directive_seen
= FALSE
;
6730 memset (&debug_line
, 0, sizeof (struct dwarf2_line_info
));
6732 if (generating_literals
)
6734 static int reported
= 0;
6736 as_bad_where (frag_now
->fr_file
, frag_now
->fr_line
,
6737 _("cannot assemble into a literal fragment"));
6744 if (frag_now_fix () != 0
6745 && (! frag_now
->tc_frag_data
.is_insn
6746 || (vinsn_has_specific_opcodes (vinsn
) && use_transform ())
6747 || !use_transform () != frag_now
->tc_frag_data
.is_no_transform
6748 || (directive_state
[directive_longcalls
]
6749 != frag_now
->tc_frag_data
.use_longcalls
)
6750 || (directive_state
[directive_absolute_literals
]
6751 != frag_now
->tc_frag_data
.use_absolute_literals
)))
6753 frag_wane (frag_now
);
6755 xtensa_set_frag_assembly_state (frag_now
);
6758 if (workaround_a0_b_retw
6759 && vinsn
->num_slots
== 1
6760 && (get_last_insn_flags (now_seg
, now_subseg
) & FLAG_IS_A0_WRITER
) != 0
6761 && xtensa_opcode_is_branch (isa
, vinsn
->slots
[0].opcode
) == 1
6762 && use_transform ())
6764 has_a0_b_retw
= TRUE
;
6766 /* Mark this fragment with the special RELAX_ADD_NOP_IF_A0_B_RETW.
6767 After the first assembly pass we will check all of them and
6768 add a nop if needed. */
6769 frag_now
->tc_frag_data
.is_insn
= TRUE
;
6770 frag_var (rs_machine_dependent
, 4, 4,
6771 RELAX_ADD_NOP_IF_A0_B_RETW
,
6772 frag_now
->fr_symbol
,
6773 frag_now
->fr_offset
,
6775 xtensa_set_frag_assembly_state (frag_now
);
6776 frag_now
->tc_frag_data
.is_insn
= TRUE
;
6777 frag_var (rs_machine_dependent
, 4, 4,
6778 RELAX_ADD_NOP_IF_A0_B_RETW
,
6779 frag_now
->fr_symbol
,
6780 frag_now
->fr_offset
,
6782 xtensa_set_frag_assembly_state (frag_now
);
6785 for (slot
= 0; slot
< vinsn
->num_slots
; slot
++)
6787 tinsn
= &vinsn
->slots
[slot
];
6789 /* See if the instruction implies an aligned section. */
6790 if (xtensa_opcode_is_loop (isa
, tinsn
->opcode
) == 1)
6791 record_alignment (now_seg
, 2);
6793 /* Determine the best line number for debug info. */
6794 if ((tinsn
->loc_directive_seen
|| !loc_directive_seen
)
6795 && (tinsn
->debug_line
.filenum
!= debug_line
.filenum
6796 || tinsn
->debug_line
.line
< debug_line
.line
6797 || tinsn
->debug_line
.column
< debug_line
.column
))
6798 debug_line
= tinsn
->debug_line
;
6799 if (tinsn
->loc_directive_seen
)
6800 loc_directive_seen
= TRUE
;
6803 /* Special cases for instructions that force an alignment... */
6804 /* None of these opcodes are bundle-able. */
6805 if (xtensa_opcode_is_loop (isa
, vinsn
->slots
[0].opcode
) == 1)
6809 /* Remember the symbol that marks the end of the loop in the frag
6810 that marks the start of the loop. This way we can easily find
6811 the end of the loop at the beginning, without adding special code
6812 to mark the loop instructions themselves. */
6813 symbolS
*target_sym
= NULL
;
6814 if (vinsn
->slots
[0].tok
[1].X_op
== O_symbol
)
6815 target_sym
= vinsn
->slots
[0].tok
[1].X_add_symbol
;
6817 xtensa_set_frag_assembly_state (frag_now
);
6818 frag_now
->tc_frag_data
.is_insn
= TRUE
;
6820 max_fill
= get_text_align_max_fill_size
6821 (get_text_align_power (xtensa_fetch_width
),
6822 TRUE
, frag_now
->tc_frag_data
.is_no_density
);
6824 if (use_transform ())
6825 frag_var (rs_machine_dependent
, max_fill
, max_fill
,
6826 RELAX_ALIGN_NEXT_OPCODE
, target_sym
, 0, NULL
);
6828 frag_var (rs_machine_dependent
, 0, 0,
6829 RELAX_CHECK_ALIGN_NEXT_OPCODE
, target_sym
, 0, NULL
);
6830 xtensa_set_frag_assembly_state (frag_now
);
6833 if (vinsn
->slots
[0].opcode
== xtensa_entry_opcode
6834 && !vinsn
->slots
[0].is_specific_opcode
)
6836 xtensa_mark_literal_pool_location ();
6837 xtensa_move_labels (frag_now
, 0);
6838 frag_var (rs_align_test
, 1, 1, 0, NULL
, 2, NULL
);
6841 if (vinsn
->num_slots
== 1)
6843 if (workaround_a0_b_retw
&& use_transform ())
6844 set_last_insn_flags (now_seg
, now_subseg
, FLAG_IS_A0_WRITER
,
6845 is_register_writer (&vinsn
->slots
[0], "a", 0));
6847 set_last_insn_flags (now_seg
, now_subseg
, FLAG_IS_BAD_LOOPEND
,
6848 is_bad_loopend_opcode (&vinsn
->slots
[0]));
6851 set_last_insn_flags (now_seg
, now_subseg
, FLAG_IS_BAD_LOOPEND
, FALSE
);
6853 insn_size
= xtensa_format_length (isa
, vinsn
->format
);
6855 extra_space
= relaxation_requirements (vinsn
, &finish_frag
);
6857 /* vinsn_to_insnbuf will produce the error. */
6858 if (vinsn
->format
!= XTENSA_UNDEFINED
)
6860 f
= frag_more (insn_size
+ extra_space
);
6861 xtensa_set_frag_assembly_state (frag_now
);
6862 frag_now
->tc_frag_data
.is_insn
= TRUE
;
6865 vinsn_to_insnbuf (vinsn
, f
, frag_now
, FALSE
);
6866 if (vinsn
->format
== XTENSA_UNDEFINED
)
6869 xtensa_insnbuf_to_chars (isa
, vinsn
->insnbuf
, (unsigned char *) f
, 0);
6871 if (debug_type
== DEBUG_DWARF2
|| loc_directive_seen
)
6872 dwarf2_gen_line_info (frag_now_fix () - (insn_size
+ extra_space
),
6875 for (slot
= 0; slot
< vinsn
->num_slots
; slot
++)
6877 tinsn
= &vinsn
->slots
[slot
];
6878 frag_now
->tc_frag_data
.slot_subtypes
[slot
] = tinsn
->subtype
;
6879 frag_now
->tc_frag_data
.slot_symbols
[slot
] = tinsn
->symbol
;
6880 frag_now
->tc_frag_data
.slot_offsets
[slot
] = tinsn
->offset
;
6881 frag_now
->tc_frag_data
.literal_frags
[slot
] = tinsn
->literal_frag
;
6882 if (tinsn
->literal_space
!= 0)
6883 xg_assemble_literal_space (tinsn
->literal_space
, slot
);
6885 if (tinsn
->subtype
== RELAX_NARROW
)
6886 assert (vinsn
->num_slots
== 1);
6887 if (xtensa_opcode_is_jump (isa
, tinsn
->opcode
) == 1)
6889 if (xtensa_opcode_is_branch (isa
, tinsn
->opcode
) == 1)
6892 if (tinsn
->subtype
|| tinsn
->symbol
|| tinsn
->offset
6893 || tinsn
->literal_frag
|| is_jump
|| is_branch
)
6897 if (vinsn_has_specific_opcodes (vinsn
) && use_transform ())
6898 frag_now
->tc_frag_data
.is_specific_opcode
= TRUE
;
6902 frag_variant (rs_machine_dependent
,
6903 extra_space
, extra_space
, RELAX_SLOTS
,
6904 frag_now
->fr_symbol
, frag_now
->fr_offset
, f
);
6905 xtensa_set_frag_assembly_state (frag_now
);
6908 /* Special cases for loops:
6909 close_loop_end should be inserted AFTER short_loop.
6910 Make sure that CLOSE loops are processed BEFORE short_loops
6911 when converting them. */
6913 /* "short_loop": Add a NOP if the loop is < 4 bytes. */
6914 if (xtensa_opcode_is_loop (isa
, vinsn
->slots
[0].opcode
) == 1
6915 && !vinsn
->slots
[0].is_specific_opcode
)
6917 if (workaround_short_loop
&& use_transform ())
6919 maybe_has_short_loop
= TRUE
;
6920 frag_now
->tc_frag_data
.is_insn
= TRUE
;
6921 frag_var (rs_machine_dependent
, 4, 4,
6922 RELAX_ADD_NOP_IF_SHORT_LOOP
,
6923 frag_now
->fr_symbol
, frag_now
->fr_offset
, NULL
);
6924 frag_now
->tc_frag_data
.is_insn
= TRUE
;
6925 frag_var (rs_machine_dependent
, 4, 4,
6926 RELAX_ADD_NOP_IF_SHORT_LOOP
,
6927 frag_now
->fr_symbol
, frag_now
->fr_offset
, NULL
);
6930 /* "close_loop_end": Add up to 12 bytes of NOPs to keep a
6931 loop at least 12 bytes away from another loop's end. */
6932 if (workaround_close_loop_end
&& use_transform ())
6934 maybe_has_close_loop_end
= TRUE
;
6935 frag_now
->tc_frag_data
.is_insn
= TRUE
;
6936 frag_var (rs_machine_dependent
, 12, 12,
6937 RELAX_ADD_NOP_IF_CLOSE_LOOP_END
,
6938 frag_now
->fr_symbol
, frag_now
->fr_offset
, NULL
);
6942 if (use_transform ())
6946 assert (finish_frag
);
6947 frag_var (rs_machine_dependent
,
6948 UNREACHABLE_MAX_WIDTH
, UNREACHABLE_MAX_WIDTH
,
6950 frag_now
->fr_symbol
, frag_now
->fr_offset
, NULL
);
6951 xtensa_set_frag_assembly_state (frag_now
);
6953 else if (is_branch
&& do_align_targets ())
6955 assert (finish_frag
);
6956 frag_var (rs_machine_dependent
,
6957 UNREACHABLE_MAX_WIDTH
, UNREACHABLE_MAX_WIDTH
,
6958 RELAX_MAYBE_UNREACHABLE
,
6959 frag_now
->fr_symbol
, frag_now
->fr_offset
, NULL
);
6960 xtensa_set_frag_assembly_state (frag_now
);
6961 frag_var (rs_machine_dependent
,
6963 RELAX_MAYBE_DESIRE_ALIGN
,
6964 frag_now
->fr_symbol
, frag_now
->fr_offset
, NULL
);
6965 xtensa_set_frag_assembly_state (frag_now
);
6969 /* Now, if the original opcode was a call... */
6970 if (do_align_targets ()
6971 && xtensa_opcode_is_call (isa
, vinsn
->slots
[0].opcode
) == 1)
6973 float freq
= get_subseg_total_freq (now_seg
, now_subseg
);
6974 frag_now
->tc_frag_data
.is_insn
= TRUE
;
6975 frag_var (rs_machine_dependent
, 4, (int) freq
, RELAX_DESIRE_ALIGN
,
6976 frag_now
->fr_symbol
, frag_now
->fr_offset
, NULL
);
6977 xtensa_set_frag_assembly_state (frag_now
);
6980 if (vinsn_has_specific_opcodes (vinsn
) && use_transform ())
6982 frag_wane (frag_now
);
6984 xtensa_set_frag_assembly_state (frag_now
);
6989 /* xtensa_end and helper functions. */
6991 static void xtensa_cleanup_align_frags (void);
6992 static void xtensa_fix_target_frags (void);
6993 static void xtensa_mark_narrow_branches (void);
6994 static void xtensa_mark_zcl_first_insns (void);
6995 static void xtensa_mark_difference_of_two_symbols (void);
6996 static void xtensa_fix_a0_b_retw_frags (void);
6997 static void xtensa_fix_b_j_loop_end_frags (void);
6998 static void xtensa_fix_close_loop_end_frags (void);
6999 static void xtensa_fix_short_loop_frags (void);
7000 static void xtensa_sanity_check (void);
7001 static void xtensa_add_config_info (void);
7006 directive_balance ();
7007 xtensa_flush_pending_output ();
7009 past_xtensa_end
= TRUE
;
7011 xtensa_move_literals ();
7013 xtensa_reorder_segments ();
7014 xtensa_cleanup_align_frags ();
7015 xtensa_fix_target_frags ();
7016 if (workaround_a0_b_retw
&& has_a0_b_retw
)
7017 xtensa_fix_a0_b_retw_frags ();
7018 if (workaround_b_j_loop_end
)
7019 xtensa_fix_b_j_loop_end_frags ();
7021 /* "close_loop_end" should be processed BEFORE "short_loop". */
7022 if (workaround_close_loop_end
&& maybe_has_close_loop_end
)
7023 xtensa_fix_close_loop_end_frags ();
7025 if (workaround_short_loop
&& maybe_has_short_loop
)
7026 xtensa_fix_short_loop_frags ();
7028 xtensa_mark_narrow_branches ();
7029 xtensa_mark_zcl_first_insns ();
7031 xtensa_sanity_check ();
7033 xtensa_add_config_info ();
7038 xtensa_cleanup_align_frags (void)
7043 for (s
= stdoutput
->sections
; s
; s
= s
->next
)
7044 for (frchP
= seg_info (s
)->frchainP
; frchP
; frchP
= frchP
->frch_next
)
7047 /* Walk over all of the fragments in a subsection. */
7048 for (fragP
= frchP
->frch_root
; fragP
; fragP
= fragP
->fr_next
)
7050 if ((fragP
->fr_type
== rs_align
7051 || fragP
->fr_type
== rs_align_code
7052 || (fragP
->fr_type
== rs_machine_dependent
7053 && (fragP
->fr_subtype
== RELAX_DESIRE_ALIGN
7054 || fragP
->fr_subtype
== RELAX_DESIRE_ALIGN_IF_TARGET
)))
7055 && fragP
->fr_fix
== 0)
7057 fragS
*next
= fragP
->fr_next
;
7060 && next
->fr_fix
== 0
7061 && next
->fr_type
== rs_machine_dependent
7062 && next
->fr_subtype
== RELAX_DESIRE_ALIGN_IF_TARGET
)
7065 next
= next
->fr_next
;
7068 /* If we don't widen branch targets, then they
7069 will be easier to align. */
7070 if (fragP
->tc_frag_data
.is_branch_target
7071 && fragP
->fr_opcode
== fragP
->fr_literal
7072 && fragP
->fr_type
== rs_machine_dependent
7073 && fragP
->fr_subtype
== RELAX_SLOTS
7074 && fragP
->tc_frag_data
.slot_subtypes
[0] == RELAX_NARROW
)
7076 if (fragP
->fr_type
== rs_machine_dependent
7077 && fragP
->fr_subtype
== RELAX_UNREACHABLE
)
7078 fragP
->tc_frag_data
.is_unreachable
= TRUE
;
7084 /* Re-process all of the fragments looking to convert all of the
7085 RELAX_DESIRE_ALIGN_IF_TARGET fragments. If there is a branch
7086 target in the next fragment, convert this to RELAX_DESIRE_ALIGN.
7087 Otherwise, convert to a .fill 0. */
7090 xtensa_fix_target_frags (void)
7095 /* When this routine is called, all of the subsections are still intact
7096 so we walk over subsections instead of sections. */
7097 for (s
= stdoutput
->sections
; s
; s
= s
->next
)
7098 for (frchP
= seg_info (s
)->frchainP
; frchP
; frchP
= frchP
->frch_next
)
7102 /* Walk over all of the fragments in a subsection. */
7103 for (fragP
= frchP
->frch_root
; fragP
; fragP
= fragP
->fr_next
)
7105 if (fragP
->fr_type
== rs_machine_dependent
7106 && fragP
->fr_subtype
== RELAX_DESIRE_ALIGN_IF_TARGET
)
7108 if (next_frag_is_branch_target (fragP
))
7109 fragP
->fr_subtype
= RELAX_DESIRE_ALIGN
;
7118 static bfd_boolean
is_narrow_branch_guaranteed_in_range (fragS
*, TInsn
*);
7121 xtensa_mark_narrow_branches (void)
7126 for (s
= stdoutput
->sections
; s
; s
= s
->next
)
7127 for (frchP
= seg_info (s
)->frchainP
; frchP
; frchP
= frchP
->frch_next
)
7130 /* Walk over all of the fragments in a subsection. */
7131 for (fragP
= frchP
->frch_root
; fragP
; fragP
= fragP
->fr_next
)
7133 if (fragP
->fr_type
== rs_machine_dependent
7134 && fragP
->fr_subtype
== RELAX_SLOTS
7135 && fragP
->tc_frag_data
.slot_subtypes
[0] == RELAX_IMMED
)
7139 vinsn_from_chars (&vinsn
, fragP
->fr_opcode
);
7140 tinsn_immed_from_frag (&vinsn
.slots
[0], fragP
, 0);
7142 if (vinsn
.num_slots
== 1
7143 && xtensa_opcode_is_branch (xtensa_default_isa
,
7144 vinsn
.slots
[0].opcode
) == 1
7145 && xg_get_single_size (vinsn
.slots
[0].opcode
) == 2
7146 && is_narrow_branch_guaranteed_in_range (fragP
,
7149 fragP
->fr_subtype
= RELAX_SLOTS
;
7150 fragP
->tc_frag_data
.slot_subtypes
[0] = RELAX_NARROW
;
7151 fragP
->tc_frag_data
.is_aligning_branch
= 1;
7159 /* A branch is typically widened only when its target is out of
7160 range. However, we would like to widen them to align a subsequent
7161 branch target when possible.
7163 Because the branch relaxation code is so convoluted, the optimal solution
7164 (combining the two cases) is difficult to get right in all circumstances.
7165 We therefore go with an "almost as good" solution, where we only
7166 use for alignment narrow branches that definitely will not expand to a
7167 jump and a branch. These functions find and mark these cases. */
7169 /* The range in bytes of BNEZ.N and BEQZ.N. The target operand is encoded
7170 as PC + 4 + imm6, where imm6 is a 6-bit immediate ranging from 0 to 63.
7171 We start counting beginning with the frag after the 2-byte branch, so the
7172 maximum offset is (4 - 2) + 63 = 65. */
7173 #define MAX_IMMED6 65
7175 static offsetT
unrelaxed_frag_max_size (fragS
*);
7178 is_narrow_branch_guaranteed_in_range (fragS
*fragP
, TInsn
*tinsn
)
7180 const expressionS
*expr
= &tinsn
->tok
[1];
7181 symbolS
*symbolP
= expr
->X_add_symbol
;
7182 offsetT max_distance
= expr
->X_add_number
;
7185 if (expr
->X_op
!= O_symbol
)
7188 target_frag
= symbol_get_frag (symbolP
);
7190 max_distance
+= (S_GET_VALUE (symbolP
) - target_frag
->fr_address
);
7191 if (is_branch_jmp_to_next (tinsn
, fragP
))
7194 /* The branch doesn't branch over it's own frag,
7195 but over the subsequent ones. */
7196 fragP
= fragP
->fr_next
;
7197 while (fragP
!= NULL
&& fragP
!= target_frag
&& max_distance
<= MAX_IMMED6
)
7199 max_distance
+= unrelaxed_frag_max_size (fragP
);
7200 fragP
= fragP
->fr_next
;
7202 if (max_distance
<= MAX_IMMED6
&& fragP
== target_frag
)
7209 xtensa_mark_zcl_first_insns (void)
7214 for (s
= stdoutput
->sections
; s
; s
= s
->next
)
7215 for (frchP
= seg_info (s
)->frchainP
; frchP
; frchP
= frchP
->frch_next
)
7218 /* Walk over all of the fragments in a subsection. */
7219 for (fragP
= frchP
->frch_root
; fragP
; fragP
= fragP
->fr_next
)
7221 if (fragP
->fr_type
== rs_machine_dependent
7222 && (fragP
->fr_subtype
== RELAX_ALIGN_NEXT_OPCODE
7223 || fragP
->fr_subtype
== RELAX_CHECK_ALIGN_NEXT_OPCODE
))
7225 /* Find the loop frag. */
7226 fragS
*targ_frag
= next_non_empty_frag (fragP
);
7227 /* Find the first insn frag. */
7228 targ_frag
= next_non_empty_frag (targ_frag
);
7230 /* Of course, sometimes (mostly for toy test cases) a
7231 zero-cost loop instruction is the last in a section. */
7234 targ_frag
->tc_frag_data
.is_first_loop_insn
= TRUE
;
7235 /* Do not widen a frag that is the first instruction of a
7236 zero-cost loop. It makes that loop harder to align. */
7237 if (targ_frag
->fr_type
== rs_machine_dependent
7238 && targ_frag
->fr_subtype
== RELAX_SLOTS
7239 && (targ_frag
->tc_frag_data
.slot_subtypes
[0]
7242 if (targ_frag
->tc_frag_data
.is_aligning_branch
)
7243 targ_frag
->tc_frag_data
.slot_subtypes
[0] = RELAX_IMMED
;
7246 frag_wane (targ_frag
);
7247 targ_frag
->tc_frag_data
.slot_subtypes
[0] = 0;
7251 if (fragP
->fr_subtype
== RELAX_CHECK_ALIGN_NEXT_OPCODE
)
7259 /* Some difference-of-symbols expressions make it out to the linker. Some
7260 don't. If one does, then the linker can optimize between the two labels.
7261 If it doesn't, then the linker shouldn't. */
7264 xtensa_mark_difference_of_two_symbols (void)
7268 for (expr_sym
= expr_symbols
; expr_sym
;
7269 expr_sym
= symbol_get_tc (expr_sym
)->next_expr_symbol
)
7271 expressionS
*expr
= symbol_get_value_expression (expr_sym
);
7273 if (expr
->X_op
== O_subtract
)
7275 symbolS
*left
= expr
->X_add_symbol
;
7276 symbolS
*right
= expr
->X_op_symbol
;
7278 /* Difference of two symbols not in the same section
7279 are handled with relocations in the linker. */
7280 if (S_GET_SEGMENT (left
) == S_GET_SEGMENT (right
))
7285 if (symbol_get_frag (left
)->fr_address
7286 <= symbol_get_frag (right
)->fr_address
)
7288 start
= symbol_get_frag (left
);
7289 end
= symbol_get_frag (right
);
7293 start
= symbol_get_frag (right
);
7294 end
= symbol_get_frag (left
);
7298 start
->tc_frag_data
.is_no_transform
= 1;
7299 start
= start
->fr_next
;
7301 while (start
&& start
->fr_address
< end
->fr_address
);
7308 /* Re-process all of the fragments looking to convert all of the
7309 RELAX_ADD_NOP_IF_A0_B_RETW. If the next instruction is a
7310 conditional branch or a retw/retw.n, convert this frag to one that
7311 will generate a NOP. In any case close it off with a .fill 0. */
7313 static bfd_boolean
next_instrs_are_b_retw (fragS
*);
7316 xtensa_fix_a0_b_retw_frags (void)
7321 /* When this routine is called, all of the subsections are still intact
7322 so we walk over subsections instead of sections. */
7323 for (s
= stdoutput
->sections
; s
; s
= s
->next
)
7324 for (frchP
= seg_info (s
)->frchainP
; frchP
; frchP
= frchP
->frch_next
)
7328 /* Walk over all of the fragments in a subsection. */
7329 for (fragP
= frchP
->frch_root
; fragP
; fragP
= fragP
->fr_next
)
7331 if (fragP
->fr_type
== rs_machine_dependent
7332 && fragP
->fr_subtype
== RELAX_ADD_NOP_IF_A0_B_RETW
)
7334 if (next_instrs_are_b_retw (fragP
))
7336 if (fragP
->tc_frag_data
.is_no_transform
)
7337 as_bad (_("instruction sequence (write a0, branch, retw) may trigger hardware errata"));
7339 relax_frag_add_nop (fragP
);
7349 next_instrs_are_b_retw (fragS
*fragP
)
7351 xtensa_opcode opcode
;
7353 const fragS
*next_fragP
= next_non_empty_frag (fragP
);
7354 static xtensa_insnbuf insnbuf
= NULL
;
7355 static xtensa_insnbuf slotbuf
= NULL
;
7356 xtensa_isa isa
= xtensa_default_isa
;
7359 bfd_boolean branch_seen
= FALSE
;
7363 insnbuf
= xtensa_insnbuf_alloc (isa
);
7364 slotbuf
= xtensa_insnbuf_alloc (isa
);
7367 if (next_fragP
== NULL
)
7370 /* Check for the conditional branch. */
7371 xtensa_insnbuf_from_chars
7372 (isa
, insnbuf
, (unsigned char *) &next_fragP
->fr_literal
[offset
], 0);
7373 fmt
= xtensa_format_decode (isa
, insnbuf
);
7374 if (fmt
== XTENSA_UNDEFINED
)
7377 for (slot
= 0; slot
< xtensa_format_num_slots (isa
, fmt
); slot
++)
7379 xtensa_format_get_slot (isa
, fmt
, slot
, insnbuf
, slotbuf
);
7380 opcode
= xtensa_opcode_decode (isa
, fmt
, slot
, slotbuf
);
7382 branch_seen
= (branch_seen
7383 || xtensa_opcode_is_branch (isa
, opcode
) == 1);
7389 offset
+= xtensa_format_length (isa
, fmt
);
7390 if (offset
== next_fragP
->fr_fix
)
7392 next_fragP
= next_non_empty_frag (next_fragP
);
7396 if (next_fragP
== NULL
)
7399 /* Check for the retw/retw.n. */
7400 xtensa_insnbuf_from_chars
7401 (isa
, insnbuf
, (unsigned char *) &next_fragP
->fr_literal
[offset
], 0);
7402 fmt
= xtensa_format_decode (isa
, insnbuf
);
7404 /* Because RETW[.N] is not bundleable, a VLIW bundle here means that we
7405 have no problems. */
7406 if (fmt
== XTENSA_UNDEFINED
7407 || xtensa_format_num_slots (isa
, fmt
) != 1)
7410 xtensa_format_get_slot (isa
, fmt
, 0, insnbuf
, slotbuf
);
7411 opcode
= xtensa_opcode_decode (isa
, fmt
, 0, slotbuf
);
7413 if (opcode
== xtensa_retw_opcode
|| opcode
== xtensa_retw_n_opcode
)
7420 /* Re-process all of the fragments looking to convert all of the
7421 RELAX_ADD_NOP_IF_PRE_LOOP_END. If there is one instruction and a
7422 loop end label, convert this frag to one that will generate a NOP.
7423 In any case close it off with a .fill 0. */
7425 static bfd_boolean
next_instr_is_loop_end (fragS
*);
7428 xtensa_fix_b_j_loop_end_frags (void)
7433 /* When this routine is called, all of the subsections are still intact
7434 so we walk over subsections instead of sections. */
7435 for (s
= stdoutput
->sections
; s
; s
= s
->next
)
7436 for (frchP
= seg_info (s
)->frchainP
; frchP
; frchP
= frchP
->frch_next
)
7440 /* Walk over all of the fragments in a subsection. */
7441 for (fragP
= frchP
->frch_root
; fragP
; fragP
= fragP
->fr_next
)
7443 if (fragP
->fr_type
== rs_machine_dependent
7444 && fragP
->fr_subtype
== RELAX_ADD_NOP_IF_PRE_LOOP_END
)
7446 if (next_instr_is_loop_end (fragP
))
7448 if (fragP
->tc_frag_data
.is_no_transform
)
7449 as_bad (_("branching or jumping to a loop end may trigger hardware errata"));
7451 relax_frag_add_nop (fragP
);
7461 next_instr_is_loop_end (fragS
*fragP
)
7463 const fragS
*next_fragP
;
7465 if (next_frag_is_loop_target (fragP
))
7468 next_fragP
= next_non_empty_frag (fragP
);
7469 if (next_fragP
== NULL
)
7472 if (!next_frag_is_loop_target (next_fragP
))
7475 /* If the size is >= 3 then there is more than one instruction here.
7476 The hardware bug will not fire. */
7477 if (next_fragP
->fr_fix
> 3)
7484 /* Re-process all of the fragments looking to convert all of the
7485 RELAX_ADD_NOP_IF_CLOSE_LOOP_END. If there is an loop end that is
7486 not MY loop's loop end within 12 bytes, add enough nops here to
7487 make it at least 12 bytes away. In any case close it off with a
7490 static offsetT min_bytes_to_other_loop_end
7491 (fragS
*, fragS
*, offsetT
);
7494 xtensa_fix_close_loop_end_frags (void)
7499 /* When this routine is called, all of the subsections are still intact
7500 so we walk over subsections instead of sections. */
7501 for (s
= stdoutput
->sections
; s
; s
= s
->next
)
7502 for (frchP
= seg_info (s
)->frchainP
; frchP
; frchP
= frchP
->frch_next
)
7506 fragS
*current_target
= NULL
;
7508 /* Walk over all of the fragments in a subsection. */
7509 for (fragP
= frchP
->frch_root
; fragP
; fragP
= fragP
->fr_next
)
7511 if (fragP
->fr_type
== rs_machine_dependent
7512 && ((fragP
->fr_subtype
== RELAX_ALIGN_NEXT_OPCODE
)
7513 || (fragP
->fr_subtype
== RELAX_CHECK_ALIGN_NEXT_OPCODE
)))
7514 current_target
= symbol_get_frag (fragP
->fr_symbol
);
7517 && fragP
->fr_type
== rs_machine_dependent
7518 && fragP
->fr_subtype
== RELAX_ADD_NOP_IF_CLOSE_LOOP_END
)
7521 int bytes_added
= 0;
7523 #define REQUIRED_LOOP_DIVIDING_BYTES 12
7524 /* Max out at 12. */
7525 min_bytes
= min_bytes_to_other_loop_end
7526 (fragP
->fr_next
, current_target
, REQUIRED_LOOP_DIVIDING_BYTES
);
7528 if (min_bytes
< REQUIRED_LOOP_DIVIDING_BYTES
)
7530 if (fragP
->tc_frag_data
.is_no_transform
)
7531 as_bad (_("loop end too close to another loop end may trigger hardware errata"));
7534 while (min_bytes
+ bytes_added
7535 < REQUIRED_LOOP_DIVIDING_BYTES
)
7539 if (fragP
->fr_var
< length
)
7540 as_fatal (_("fr_var %lu < length %d"),
7541 (long) fragP
->fr_var
, length
);
7544 assemble_nop (length
,
7545 fragP
->fr_literal
+ fragP
->fr_fix
);
7546 fragP
->fr_fix
+= length
;
7547 fragP
->fr_var
-= length
;
7549 bytes_added
+= length
;
7555 assert (fragP
->fr_type
!= rs_machine_dependent
7556 || fragP
->fr_subtype
!= RELAX_ADD_NOP_IF_CLOSE_LOOP_END
);
7562 static offsetT
unrelaxed_frag_min_size (fragS
*);
7565 min_bytes_to_other_loop_end (fragS
*fragP
,
7566 fragS
*current_target
,
7570 fragS
*current_fragP
;
7572 for (current_fragP
= fragP
;
7574 current_fragP
= current_fragP
->fr_next
)
7576 if (current_fragP
->tc_frag_data
.is_loop_target
7577 && current_fragP
!= current_target
)
7580 offset
+= unrelaxed_frag_min_size (current_fragP
);
7582 if (offset
>= max_size
)
7590 unrelaxed_frag_min_size (fragS
*fragP
)
7592 offsetT size
= fragP
->fr_fix
;
7594 /* Add fill size. */
7595 if (fragP
->fr_type
== rs_fill
)
7596 size
+= fragP
->fr_offset
;
7603 unrelaxed_frag_max_size (fragS
*fragP
)
7605 offsetT size
= fragP
->fr_fix
;
7606 switch (fragP
->fr_type
)
7609 /* Empty frags created by the obstack allocation scheme
7610 end up with type 0. */
7615 size
+= fragP
->fr_offset
;
7623 /* No further adjustments needed. */
7625 case rs_machine_dependent
:
7626 if (fragP
->fr_subtype
!= RELAX_DESIRE_ALIGN
)
7627 size
+= fragP
->fr_var
;
7630 /* We had darn well better know how big it is. */
7639 /* Re-process all of the fragments looking to convert all
7640 of the RELAX_ADD_NOP_IF_SHORT_LOOP. If:
7643 1) the instruction size count to the loop end label
7644 is too short (<= 2 instructions),
7645 2) loop has a jump or branch in it
7648 1) workaround_all_short_loops is TRUE
7649 2) The generating loop was a 'loopgtz' or 'loopnez'
7650 3) the instruction size count to the loop end label is too short
7652 then convert this frag (and maybe the next one) to generate a NOP.
7653 In any case close it off with a .fill 0. */
7655 static int count_insns_to_loop_end (fragS
*, bfd_boolean
, int);
7656 static bfd_boolean
branch_before_loop_end (fragS
*);
7659 xtensa_fix_short_loop_frags (void)
7664 /* When this routine is called, all of the subsections are still intact
7665 so we walk over subsections instead of sections. */
7666 for (s
= stdoutput
->sections
; s
; s
= s
->next
)
7667 for (frchP
= seg_info (s
)->frchainP
; frchP
; frchP
= frchP
->frch_next
)
7670 fragS
*current_target
= NULL
;
7671 xtensa_opcode current_opcode
= XTENSA_UNDEFINED
;
7673 /* Walk over all of the fragments in a subsection. */
7674 for (fragP
= frchP
->frch_root
; fragP
; fragP
= fragP
->fr_next
)
7676 if (fragP
->fr_type
== rs_machine_dependent
7677 && ((fragP
->fr_subtype
== RELAX_ALIGN_NEXT_OPCODE
)
7678 || (fragP
->fr_subtype
== RELAX_CHECK_ALIGN_NEXT_OPCODE
)))
7681 fragS
*loop_frag
= next_non_empty_frag (fragP
);
7682 tinsn_from_chars (&t_insn
, loop_frag
->fr_opcode
, 0);
7683 current_target
= symbol_get_frag (fragP
->fr_symbol
);
7684 current_opcode
= t_insn
.opcode
;
7685 assert (xtensa_opcode_is_loop (xtensa_default_isa
,
7686 current_opcode
) == 1);
7689 if (fragP
->fr_type
== rs_machine_dependent
7690 && fragP
->fr_subtype
== RELAX_ADD_NOP_IF_SHORT_LOOP
)
7692 if (count_insns_to_loop_end (fragP
->fr_next
, TRUE
, 3) < 3
7693 && (branch_before_loop_end (fragP
->fr_next
)
7694 || (workaround_all_short_loops
7695 && current_opcode
!= XTENSA_UNDEFINED
7696 && current_opcode
!= xtensa_loop_opcode
)))
7698 if (fragP
->tc_frag_data
.is_no_transform
)
7699 as_bad (_("loop containing less than three instructions may trigger hardware errata"));
7701 relax_frag_add_nop (fragP
);
7710 static int unrelaxed_frag_min_insn_count (fragS
*);
7713 count_insns_to_loop_end (fragS
*base_fragP
,
7714 bfd_boolean count_relax_add
,
7717 fragS
*fragP
= NULL
;
7722 for (; fragP
&& !fragP
->tc_frag_data
.is_loop_target
; fragP
= fragP
->fr_next
)
7724 insn_count
+= unrelaxed_frag_min_insn_count (fragP
);
7725 if (insn_count
>= max_count
)
7728 if (count_relax_add
)
7730 if (fragP
->fr_type
== rs_machine_dependent
7731 && fragP
->fr_subtype
== RELAX_ADD_NOP_IF_SHORT_LOOP
)
7733 /* In order to add the appropriate number of
7734 NOPs, we count an instruction for downstream
7737 if (insn_count
>= max_count
)
7747 unrelaxed_frag_min_insn_count (fragS
*fragP
)
7749 xtensa_isa isa
= xtensa_default_isa
;
7750 static xtensa_insnbuf insnbuf
= NULL
;
7754 if (!fragP
->tc_frag_data
.is_insn
)
7758 insnbuf
= xtensa_insnbuf_alloc (isa
);
7760 /* Decode the fixed instructions. */
7761 while (offset
< fragP
->fr_fix
)
7765 xtensa_insnbuf_from_chars
7766 (isa
, insnbuf
, (unsigned char *) fragP
->fr_literal
+ offset
, 0);
7767 fmt
= xtensa_format_decode (isa
, insnbuf
);
7769 if (fmt
== XTENSA_UNDEFINED
)
7771 as_fatal (_("undecodable instruction in instruction frag"));
7774 offset
+= xtensa_format_length (isa
, fmt
);
7782 static bfd_boolean
unrelaxed_frag_has_b_j (fragS
*);
7785 branch_before_loop_end (fragS
*base_fragP
)
7789 for (fragP
= base_fragP
;
7790 fragP
&& !fragP
->tc_frag_data
.is_loop_target
;
7791 fragP
= fragP
->fr_next
)
7793 if (unrelaxed_frag_has_b_j (fragP
))
7801 unrelaxed_frag_has_b_j (fragS
*fragP
)
7803 static xtensa_insnbuf insnbuf
= NULL
;
7804 xtensa_isa isa
= xtensa_default_isa
;
7807 if (!fragP
->tc_frag_data
.is_insn
)
7811 insnbuf
= xtensa_insnbuf_alloc (isa
);
7813 /* Decode the fixed instructions. */
7814 while (offset
< fragP
->fr_fix
)
7819 xtensa_insnbuf_from_chars
7820 (isa
, insnbuf
, (unsigned char *) fragP
->fr_literal
+ offset
, 0);
7821 fmt
= xtensa_format_decode (isa
, insnbuf
);
7822 if (fmt
== XTENSA_UNDEFINED
)
7825 for (slot
= 0; slot
< xtensa_format_num_slots (isa
, fmt
); slot
++)
7827 xtensa_opcode opcode
=
7828 get_opcode_from_buf (fragP
->fr_literal
+ offset
, slot
);
7829 if (xtensa_opcode_is_branch (isa
, opcode
) == 1
7830 || xtensa_opcode_is_jump (isa
, opcode
) == 1)
7833 offset
+= xtensa_format_length (isa
, fmt
);
7839 /* Checks to be made after initial assembly but before relaxation. */
7841 static bfd_boolean
is_empty_loop (const TInsn
*, fragS
*);
7842 static bfd_boolean
is_local_forward_loop (const TInsn
*, fragS
*);
7845 xtensa_sanity_check (void)
7852 as_where (&file_name
, &line
);
7853 for (s
= stdoutput
->sections
; s
; s
= s
->next
)
7854 for (frchP
= seg_info (s
)->frchainP
; frchP
; frchP
= frchP
->frch_next
)
7858 /* Walk over all of the fragments in a subsection. */
7859 for (fragP
= frchP
->frch_root
; fragP
; fragP
= fragP
->fr_next
)
7861 if (fragP
->fr_type
== rs_machine_dependent
7862 && fragP
->fr_subtype
== RELAX_SLOTS
7863 && fragP
->tc_frag_data
.slot_subtypes
[0] == RELAX_IMMED
)
7865 static xtensa_insnbuf insnbuf
= NULL
;
7868 if (fragP
->fr_opcode
!= NULL
)
7871 insnbuf
= xtensa_insnbuf_alloc (xtensa_default_isa
);
7872 tinsn_from_chars (&t_insn
, fragP
->fr_opcode
, 0);
7873 tinsn_immed_from_frag (&t_insn
, fragP
, 0);
7875 if (xtensa_opcode_is_loop (xtensa_default_isa
,
7876 t_insn
.opcode
) == 1)
7878 if (is_empty_loop (&t_insn
, fragP
))
7880 new_logical_line (fragP
->fr_file
, fragP
->fr_line
);
7881 as_bad (_("invalid empty loop"));
7883 if (!is_local_forward_loop (&t_insn
, fragP
))
7885 new_logical_line (fragP
->fr_file
, fragP
->fr_line
);
7886 as_bad (_("loop target does not follow "
7887 "loop instruction in section"));
7894 new_logical_line (file_name
, line
);
7898 #define LOOP_IMMED_OPN 1
7900 /* Return TRUE if the loop target is the next non-zero fragment. */
7903 is_empty_loop (const TInsn
*insn
, fragS
*fragP
)
7905 const expressionS
*expr
;
7909 if (insn
->insn_type
!= ITYPE_INSN
)
7912 if (xtensa_opcode_is_loop (xtensa_default_isa
, insn
->opcode
) != 1)
7915 if (insn
->ntok
<= LOOP_IMMED_OPN
)
7918 expr
= &insn
->tok
[LOOP_IMMED_OPN
];
7920 if (expr
->X_op
!= O_symbol
)
7923 symbolP
= expr
->X_add_symbol
;
7927 if (symbol_get_frag (symbolP
) == NULL
)
7930 if (S_GET_VALUE (symbolP
) != 0)
7933 /* Walk through the zero-size fragments from this one. If we find
7934 the target fragment, then this is a zero-size loop. */
7936 for (next_fragP
= fragP
->fr_next
;
7938 next_fragP
= next_fragP
->fr_next
)
7940 if (next_fragP
== symbol_get_frag (symbolP
))
7942 if (next_fragP
->fr_fix
!= 0)
7950 is_local_forward_loop (const TInsn
*insn
, fragS
*fragP
)
7952 const expressionS
*expr
;
7956 if (insn
->insn_type
!= ITYPE_INSN
)
7959 if (xtensa_opcode_is_loop (xtensa_default_isa
, insn
->opcode
) != 1)
7962 if (insn
->ntok
<= LOOP_IMMED_OPN
)
7965 expr
= &insn
->tok
[LOOP_IMMED_OPN
];
7967 if (expr
->X_op
!= O_symbol
)
7970 symbolP
= expr
->X_add_symbol
;
7974 if (symbol_get_frag (symbolP
) == NULL
)
7977 /* Walk through fragments until we find the target.
7978 If we do not find the target, then this is an invalid loop. */
7980 for (next_fragP
= fragP
->fr_next
;
7982 next_fragP
= next_fragP
->fr_next
)
7984 if (next_fragP
== symbol_get_frag (symbolP
))
7992 #define XTINFO_NAME "Xtensa_Info"
7993 #define XTINFO_NAMESZ 12
7994 #define XTINFO_TYPE 1
7997 xtensa_add_config_info (void)
8003 info_sec
= subseg_new (".xtensa.info", 0);
8004 bfd_set_section_flags (stdoutput
, info_sec
, SEC_HAS_CONTENTS
| SEC_READONLY
);
8006 data
= xmalloc (100);
8007 sprintf (data
, "USE_ABSOLUTE_LITERALS=%d\nABI=%d\n",
8008 XSHAL_USE_ABSOLUTE_LITERALS
, XSHAL_ABI
);
8009 sz
= strlen (data
) + 1;
8011 /* Add enough null terminators to pad to a word boundary. */
8014 while ((sz
& 3) != 0);
8016 /* Follow the standard note section layout:
8017 First write the length of the name string. */
8019 md_number_to_chars (p
, (valueT
) XTINFO_NAMESZ
, 4);
8021 /* Next comes the length of the "descriptor", i.e., the actual data. */
8023 md_number_to_chars (p
, (valueT
) sz
, 4);
8025 /* Write the note type. */
8027 md_number_to_chars (p
, (valueT
) XTINFO_TYPE
, 4);
8029 /* Write the name field. */
8030 p
= frag_more (XTINFO_NAMESZ
);
8031 memcpy (p
, XTINFO_NAME
, XTINFO_NAMESZ
);
8033 /* Finally, write the descriptor. */
8035 memcpy (p
, data
, sz
);
8041 /* Alignment Functions. */
8044 get_text_align_power (unsigned target_size
)
8046 if (target_size
<= 4)
8048 assert (target_size
== 8);
8054 get_text_align_max_fill_size (int align_pow
,
8055 bfd_boolean use_nops
,
8056 bfd_boolean use_no_density
)
8059 return (1 << align_pow
);
8061 return 3 * (1 << align_pow
);
8063 return 1 + (1 << align_pow
);
8067 /* Calculate the minimum bytes of fill needed at "address" to align a
8068 target instruction of size "target_size" so that it does not cross a
8069 power-of-two boundary specified by "align_pow". If "use_nops" is FALSE,
8070 the fill can be an arbitrary number of bytes. Otherwise, the space must
8071 be filled by NOP instructions. */
8074 get_text_align_fill_size (addressT address
,
8077 bfd_boolean use_nops
,
8078 bfd_boolean use_no_density
)
8080 addressT alignment
, fill
, fill_limit
, fill_step
;
8081 bfd_boolean skip_one
= FALSE
;
8083 alignment
= (1 << align_pow
);
8084 assert (target_size
> 0 && alignment
>= (addressT
) target_size
);
8088 fill_limit
= alignment
;
8091 else if (!use_no_density
)
8093 /* Combine 2- and 3-byte NOPs to fill anything larger than one. */
8094 fill_limit
= alignment
* 2;
8100 /* Fill with 3-byte NOPs -- can only fill multiples of 3. */
8101 fill_limit
= alignment
* 3;
8105 /* Try all fill sizes until finding one that works. */
8106 for (fill
= 0; fill
< fill_limit
; fill
+= fill_step
)
8108 if (skip_one
&& fill
== 1)
8110 if ((address
+ fill
) >> align_pow
8111 == (address
+ fill
+ target_size
- 1) >> align_pow
)
8120 branch_align_power (segT sec
)
8122 /* If the Xtensa processor has a fetch width of 8 bytes, and the section
8123 is aligned to at least an 8-byte boundary, then a branch target need
8124 only fit within an 8-byte aligned block of memory to avoid a stall.
8125 Otherwise, try to fit branch targets within 4-byte aligned blocks
8126 (which may be insufficient, e.g., if the section has no alignment, but
8127 it's good enough). */
8128 if (xtensa_fetch_width
== 8)
8130 if (get_recorded_alignment (sec
) >= 3)
8134 assert (xtensa_fetch_width
== 4);
8140 /* This will assert if it is not possible. */
8143 get_text_align_nop_count (offsetT fill_size
, bfd_boolean use_no_density
)
8149 assert (fill_size
% 3 == 0);
8150 return (fill_size
/ 3);
8153 assert (fill_size
!= 1); /* Bad argument. */
8155 while (fill_size
> 1)
8158 if (fill_size
== 2 || fill_size
== 4)
8160 fill_size
-= insn_size
;
8163 assert (fill_size
!= 1); /* Bad algorithm. */
8169 get_text_align_nth_nop_size (offsetT fill_size
,
8171 bfd_boolean use_no_density
)
8178 assert (fill_size
!= 1); /* Bad argument. */
8180 while (fill_size
> 1)
8183 if (fill_size
== 2 || fill_size
== 4)
8185 fill_size
-= insn_size
;
8195 /* For the given fragment, find the appropriate address
8196 for it to begin at if we are using NOPs to align it. */
8199 get_noop_aligned_address (fragS
*fragP
, addressT address
)
8201 /* The rule is: get next fragment's FIRST instruction. Find
8202 the smallest number of bytes that need to be added to
8203 ensure that the next fragment's FIRST instruction will fit
8206 E.G., 2 bytes : 0, 1, 2 mod 4
8209 If the FIRST instruction MIGHT be relaxed,
8210 assume that it will become a 3-byte instruction.
8212 Note again here that LOOP instructions are not bundleable,
8213 and this relaxation only applies to LOOP opcodes. */
8216 int first_insn_size
;
8218 addressT pre_opcode_bytes
;
8221 xtensa_opcode opcode
;
8222 bfd_boolean is_loop
;
8224 assert (fragP
->fr_type
== rs_machine_dependent
);
8225 assert (fragP
->fr_subtype
== RELAX_ALIGN_NEXT_OPCODE
);
8227 /* Find the loop frag. */
8228 first_insn
= next_non_empty_frag (fragP
);
8229 /* Now find the first insn frag. */
8230 first_insn
= next_non_empty_frag (first_insn
);
8232 is_loop
= next_frag_opcode_is_loop (fragP
, &opcode
);
8234 loop_insn_size
= xg_get_single_size (opcode
);
8236 pre_opcode_bytes
= next_frag_pre_opcode_bytes (fragP
);
8237 pre_opcode_bytes
+= loop_insn_size
;
8239 /* For loops, the alignment depends on the size of the
8240 instruction following the loop, not the LOOP instruction. */
8242 if (first_insn
== NULL
)
8243 first_insn_size
= xtensa_fetch_width
;
8245 first_insn_size
= get_loop_align_size (frag_format_size (first_insn
));
8247 /* If it was 8, then we'll need a larger alignment for the section. */
8248 align_power
= get_text_align_power (first_insn_size
);
8249 record_alignment (now_seg
, align_power
);
8251 fill_size
= get_text_align_fill_size
8252 (address
+ pre_opcode_bytes
, align_power
, first_insn_size
, TRUE
,
8253 fragP
->tc_frag_data
.is_no_density
);
8255 return address
+ fill_size
;
8259 /* 3 mechanisms for relaxing an alignment:
8261 Align to a power of 2.
8262 Align so the next fragment's instruction does not cross a word boundary.
8263 Align the current instruction so that if the next instruction
8264 were 3 bytes, it would not cross a word boundary.
8268 zeros - This is easy; always insert zeros.
8269 nops - 3-byte and 2-byte instructions
8273 >=5 : 3-byte instruction + fn (n-3)
8274 widening - widen previous instructions. */
8277 get_aligned_diff (fragS
*fragP
, addressT address
, offsetT
*max_diff
)
8279 addressT target_address
, loop_insn_offset
;
8281 xtensa_opcode loop_opcode
;
8282 bfd_boolean is_loop
;
8285 offsetT branch_align
;
8288 assert (fragP
->fr_type
== rs_machine_dependent
);
8289 switch (fragP
->fr_subtype
)
8291 case RELAX_DESIRE_ALIGN
:
8292 target_size
= next_frag_format_size (fragP
);
8293 if (target_size
== XTENSA_UNDEFINED
)
8295 align_power
= branch_align_power (now_seg
);
8296 branch_align
= 1 << align_power
;
8297 /* Don't count on the section alignment being as large as the target. */
8298 if (target_size
> branch_align
)
8299 target_size
= branch_align
;
8300 opt_diff
= get_text_align_fill_size (address
, align_power
,
8301 target_size
, FALSE
, FALSE
);
8303 *max_diff
= (opt_diff
+ branch_align
8304 - (target_size
+ ((address
+ opt_diff
) % branch_align
)));
8305 assert (*max_diff
>= opt_diff
);
8308 case RELAX_ALIGN_NEXT_OPCODE
:
8309 /* The next non-empty frag after this one holds the LOOP instruction
8310 that needs to be aligned. The required alignment depends on the
8311 size of the next non-empty frag after the loop frag, i.e., the
8312 first instruction in the loop. */
8313 loop_frag
= next_non_empty_frag (fragP
);
8314 target_size
= get_loop_align_size (next_frag_format_size (loop_frag
));
8315 loop_insn_offset
= 0;
8316 is_loop
= next_frag_opcode_is_loop (fragP
, &loop_opcode
);
8319 /* If the loop has been expanded then the LOOP instruction
8320 could be at an offset from this fragment. */
8321 if (loop_frag
->tc_frag_data
.slot_subtypes
[0] != RELAX_IMMED
)
8322 loop_insn_offset
= get_expanded_loop_offset (loop_opcode
);
8324 /* In an ideal world, which is what we are shooting for here,
8325 we wouldn't need to use any NOPs immediately prior to the
8326 LOOP instruction. If this approach fails, relax_frag_loop_align
8327 will call get_noop_aligned_address. */
8329 address
+ loop_insn_offset
+ xg_get_single_size (loop_opcode
);
8330 align_power
= get_text_align_power (target_size
);
8331 opt_diff
= get_text_align_fill_size (target_address
, align_power
,
8332 target_size
, FALSE
, FALSE
);
8334 *max_diff
= xtensa_fetch_width
8335 - ((target_address
+ opt_diff
) % xtensa_fetch_width
)
8336 - target_size
+ opt_diff
;
8337 assert (*max_diff
>= opt_diff
);
8348 /* md_relax_frag Hook and Helper Functions. */
8350 static long relax_frag_loop_align (fragS
*, long);
8351 static long relax_frag_for_align (fragS
*, long);
8352 static long relax_frag_immed
8353 (segT
, fragS
*, long, int, xtensa_format
, int, int *, bfd_boolean
);
8356 /* Return the number of bytes added to this fragment, given that the
8357 input has been stretched already by "stretch". */
8360 xtensa_relax_frag (fragS
*fragP
, long stretch
, int *stretched_p
)
8362 xtensa_isa isa
= xtensa_default_isa
;
8363 int unreported
= fragP
->tc_frag_data
.unreported_expansion
;
8364 long new_stretch
= 0;
8368 static xtensa_insnbuf vbuf
= NULL
;
8369 int slot
, num_slots
;
8372 as_where (&file_name
, &line
);
8373 new_logical_line (fragP
->fr_file
, fragP
->fr_line
);
8375 fragP
->tc_frag_data
.unreported_expansion
= 0;
8377 switch (fragP
->fr_subtype
)
8379 case RELAX_ALIGN_NEXT_OPCODE
:
8380 /* Always convert. */
8381 if (fragP
->tc_frag_data
.relax_seen
)
8382 new_stretch
= relax_frag_loop_align (fragP
, stretch
);
8385 case RELAX_LOOP_END
:
8389 case RELAX_LOOP_END_ADD_NOP
:
8390 /* Add a NOP and switch to .fill 0. */
8391 new_stretch
= relax_frag_add_nop (fragP
);
8395 case RELAX_DESIRE_ALIGN
:
8396 /* Do nothing. The narrowing before this frag will either align
8401 case RELAX_LITERAL_FINAL
:
8404 case RELAX_LITERAL_NR
:
8406 fragP
->fr_subtype
= RELAX_LITERAL_FINAL
;
8407 assert (unreported
== lit_size
);
8408 memset (&fragP
->fr_literal
[fragP
->fr_fix
], 0, 4);
8409 fragP
->fr_var
-= lit_size
;
8410 fragP
->fr_fix
+= lit_size
;
8416 vbuf
= xtensa_insnbuf_alloc (isa
);
8418 xtensa_insnbuf_from_chars
8419 (isa
, vbuf
, (unsigned char *) fragP
->fr_opcode
, 0);
8420 fmt
= xtensa_format_decode (isa
, vbuf
);
8421 num_slots
= xtensa_format_num_slots (isa
, fmt
);
8423 for (slot
= 0; slot
< num_slots
; slot
++)
8425 switch (fragP
->tc_frag_data
.slot_subtypes
[slot
])
8428 if (fragP
->tc_frag_data
.relax_seen
)
8429 new_stretch
+= relax_frag_for_align (fragP
, stretch
);
8433 case RELAX_IMMED_STEP1
:
8434 case RELAX_IMMED_STEP2
:
8435 case RELAX_IMMED_STEP3
:
8436 /* Place the immediate. */
8437 new_stretch
+= relax_frag_immed
8438 (now_seg
, fragP
, stretch
,
8439 fragP
->tc_frag_data
.slot_subtypes
[slot
] - RELAX_IMMED
,
8440 fmt
, slot
, stretched_p
, FALSE
);
8444 /* This is OK; see the note in xg_assemble_vliw_tokens. */
8450 case RELAX_LITERAL_POOL_BEGIN
:
8451 case RELAX_LITERAL_POOL_END
:
8452 case RELAX_MAYBE_UNREACHABLE
:
8453 case RELAX_MAYBE_DESIRE_ALIGN
:
8454 /* No relaxation required. */
8457 case RELAX_FILL_NOP
:
8458 case RELAX_UNREACHABLE
:
8459 if (fragP
->tc_frag_data
.relax_seen
)
8460 new_stretch
+= relax_frag_for_align (fragP
, stretch
);
8464 as_bad (_("bad relaxation state"));
8467 /* Tell gas we need another relaxation pass. */
8468 if (! fragP
->tc_frag_data
.relax_seen
)
8470 fragP
->tc_frag_data
.relax_seen
= TRUE
;
8474 new_logical_line (file_name
, line
);
8480 relax_frag_loop_align (fragS
*fragP
, long stretch
)
8482 addressT old_address
, old_next_address
, old_size
;
8483 addressT new_address
, new_next_address
, new_size
;
8486 /* All the frags with relax_frag_for_alignment prior to this one in the
8487 section have been done, hopefully eliminating the need for a NOP here.
8488 But, this will put it in if necessary. */
8490 /* Calculate the old address of this fragment and the next fragment. */
8491 old_address
= fragP
->fr_address
- stretch
;
8492 old_next_address
= (fragP
->fr_address
- stretch
+ fragP
->fr_fix
+
8493 fragP
->tc_frag_data
.text_expansion
[0]);
8494 old_size
= old_next_address
- old_address
;
8496 /* Calculate the new address of this fragment and the next fragment. */
8497 new_address
= fragP
->fr_address
;
8499 get_noop_aligned_address (fragP
, fragP
->fr_address
+ fragP
->fr_fix
);
8500 new_size
= new_next_address
- new_address
;
8502 growth
= new_size
- old_size
;
8504 /* Fix up the text_expansion field and return the new growth. */
8505 fragP
->tc_frag_data
.text_expansion
[0] += growth
;
8510 /* Add a NOP instruction. */
8513 relax_frag_add_nop (fragS
*fragP
)
8515 char *nop_buf
= fragP
->fr_literal
+ fragP
->fr_fix
;
8516 int length
= fragP
->tc_frag_data
.is_no_density
? 3 : 2;
8517 assemble_nop (length
, nop_buf
);
8518 fragP
->tc_frag_data
.is_insn
= TRUE
;
8520 if (fragP
->fr_var
< length
)
8522 as_fatal (_("fr_var (%ld) < length (%d)"), (long) fragP
->fr_var
, length
);
8526 fragP
->fr_fix
+= length
;
8527 fragP
->fr_var
-= length
;
8532 static long future_alignment_required (fragS
*, long);
8535 relax_frag_for_align (fragS
*fragP
, long stretch
)
8537 /* Overview of the relaxation procedure for alignment:
8538 We can widen with NOPs or by widening instructions or by filling
8539 bytes after jump instructions. Find the opportune places and widen
8540 them if necessary. */
8545 assert (fragP
->fr_subtype
== RELAX_FILL_NOP
8546 || fragP
->fr_subtype
== RELAX_UNREACHABLE
8547 || (fragP
->fr_subtype
== RELAX_SLOTS
8548 && fragP
->tc_frag_data
.slot_subtypes
[0] == RELAX_NARROW
));
8550 stretch_me
= future_alignment_required (fragP
, stretch
);
8551 diff
= stretch_me
- fragP
->tc_frag_data
.text_expansion
[0];
8557 /* We expanded on a previous pass. Can we shrink now? */
8558 long shrink
= fragP
->tc_frag_data
.text_expansion
[0] - stretch_me
;
8559 if (shrink
<= stretch
&& stretch
> 0)
8561 fragP
->tc_frag_data
.text_expansion
[0] = stretch_me
;
8567 /* Below here, diff > 0. */
8568 fragP
->tc_frag_data
.text_expansion
[0] = stretch_me
;
8574 /* Return the address of the next frag that should be aligned.
8576 By "address" we mean the address it _would_ be at if there
8577 is no action taken to align it between here and the target frag.
8578 In other words, if no narrows and no fill nops are used between
8579 here and the frag to align, _even_if_ some of the frags we use
8580 to align targets have already expanded on a previous relaxation
8583 Also, count each frag that may be used to help align the target.
8585 Return 0 if there are no frags left in the chain that need to be
8589 find_address_of_next_align_frag (fragS
**fragPP
,
8593 bfd_boolean
*paddable
)
8595 fragS
*fragP
= *fragPP
;
8596 addressT address
= fragP
->fr_address
;
8598 /* Do not reset the counts to 0. */
8602 /* Limit this to a small search. */
8603 if (*widens
>= (int) xtensa_fetch_width
)
8608 address
+= fragP
->fr_fix
;
8610 if (fragP
->fr_type
== rs_fill
)
8611 address
+= fragP
->fr_offset
* fragP
->fr_var
;
8612 else if (fragP
->fr_type
== rs_machine_dependent
)
8614 switch (fragP
->fr_subtype
)
8616 case RELAX_UNREACHABLE
:
8620 case RELAX_FILL_NOP
:
8622 if (!fragP
->tc_frag_data
.is_no_density
)
8627 if (fragP
->tc_frag_data
.slot_subtypes
[0] == RELAX_NARROW
)
8632 address
+= total_frag_text_expansion (fragP
);;
8636 address
+= fragP
->tc_frag_data
.text_expansion
[0];
8639 case RELAX_ALIGN_NEXT_OPCODE
:
8640 case RELAX_DESIRE_ALIGN
:
8644 case RELAX_MAYBE_UNREACHABLE
:
8645 case RELAX_MAYBE_DESIRE_ALIGN
:
8650 /* Just punt if we don't know the type. */
8657 /* Just punt if we don't know the type. */
8661 fragP
= fragP
->fr_next
;
8669 static long bytes_to_stretch (fragS
*, int, int, int, int);
8672 future_alignment_required (fragS
*fragP
, long stretch ATTRIBUTE_UNUSED
)
8674 fragS
*this_frag
= fragP
;
8678 int narrow_nops
= 0;
8679 bfd_boolean paddable
= FALSE
;
8680 offsetT local_opt_diff
;
8683 int stretch_amount
= 0;
8684 int local_stretch_amount
;
8685 int global_stretch_amount
;
8687 address
= find_address_of_next_align_frag
8688 (&fragP
, &wide_nops
, &narrow_nops
, &num_widens
, &paddable
);
8692 if (this_frag
->tc_frag_data
.is_aligning_branch
)
8693 this_frag
->tc_frag_data
.slot_subtypes
[0] = RELAX_IMMED
;
8695 frag_wane (this_frag
);
8699 local_opt_diff
= get_aligned_diff (fragP
, address
, &max_diff
);
8700 opt_diff
= local_opt_diff
;
8701 assert (opt_diff
>= 0);
8702 assert (max_diff
>= opt_diff
);
8707 fragP
= fragP
->fr_next
;
8709 while (fragP
&& opt_diff
< max_diff
&& address
)
8711 /* We only use these to determine if we can exit early
8712 because there will be plenty of ways to align future
8714 int glob_widens
= 0;
8717 bfd_boolean glob_pad
= 0;
8718 address
= find_address_of_next_align_frag
8719 (&fragP
, &glob_widens
, &dnn
, &dw
, &glob_pad
);
8720 /* If there is a padable portion, then skip. */
8721 if (glob_pad
|| glob_widens
>= (1 << branch_align_power (now_seg
)))
8726 offsetT next_m_diff
;
8727 offsetT next_o_diff
;
8729 /* Downrange frags haven't had stretch added to them yet. */
8732 /* The address also includes any text expansion from this
8733 frag in a previous pass, but we don't want that. */
8734 address
-= this_frag
->tc_frag_data
.text_expansion
[0];
8736 /* Assume we are going to move at least opt_diff. In
8737 reality, we might not be able to, but assuming that
8738 we will helps catch cases where moving opt_diff pushes
8739 the next target from aligned to unaligned. */
8740 address
+= opt_diff
;
8742 next_o_diff
= get_aligned_diff (fragP
, address
, &next_m_diff
);
8744 /* Now cleanup for the adjustments to address. */
8745 next_o_diff
+= opt_diff
;
8746 next_m_diff
+= opt_diff
;
8747 if (next_o_diff
<= max_diff
&& next_o_diff
> opt_diff
)
8748 opt_diff
= next_o_diff
;
8749 if (next_m_diff
< max_diff
)
8750 max_diff
= next_m_diff
;
8751 fragP
= fragP
->fr_next
;
8755 /* If there are enough wideners in between, do it. */
8758 if (this_frag
->fr_subtype
== RELAX_UNREACHABLE
)
8760 assert (opt_diff
<= UNREACHABLE_MAX_WIDTH
);
8765 local_stretch_amount
8766 = bytes_to_stretch (this_frag
, wide_nops
, narrow_nops
,
8767 num_widens
, local_opt_diff
);
8768 global_stretch_amount
8769 = bytes_to_stretch (this_frag
, wide_nops
, narrow_nops
,
8770 num_widens
, opt_diff
);
8771 /* If the condition below is true, then the frag couldn't
8772 stretch the correct amount for the global case, so we just
8773 optimize locally. We'll rely on the subsequent frags to get
8774 the correct alignment in the global case. */
8775 if (global_stretch_amount
< local_stretch_amount
)
8776 stretch_amount
= local_stretch_amount
;
8778 stretch_amount
= global_stretch_amount
;
8780 if (this_frag
->fr_subtype
== RELAX_SLOTS
8781 && this_frag
->tc_frag_data
.slot_subtypes
[0] == RELAX_NARROW
)
8782 assert (stretch_amount
<= 1);
8783 else if (this_frag
->fr_subtype
== RELAX_FILL_NOP
)
8785 if (this_frag
->tc_frag_data
.is_no_density
)
8786 assert (stretch_amount
== 3 || stretch_amount
== 0);
8788 assert (stretch_amount
<= 3);
8791 return stretch_amount
;
8795 /* The idea: widen everything you can to get a target or loop aligned,
8796 then start using NOPs.
8798 When we must have a NOP, here is a table of how we decide
8799 (so you don't have to fight through the control flow below):
8801 wide_nops = the number of wide NOPs available for aligning
8802 narrow_nops = the number of narrow NOPs available for aligning
8803 (a subset of wide_nops)
8804 widens = the number of narrow instructions that should be widened
8811 b 0 1 1 (case 3a makes this case unnecessary)
8814 c 0 1 2 (case 4a makes this case unnecessary)
8817 c 0 2 1 (case 5b makes this case unnecessary)
8820 c 0 1 4 (case 6b makes this case unnecessary)
8821 d 1 1 1 (case 6a makes this case unnecessary)
8822 e 0 2 2 (case 6a makes this case unnecessary)
8823 f 0 3 0 (case 6a makes this case unnecessary)
8826 c 1 1 2 (case 7b makes this case unnecessary)
8827 d 0 1 5 (case 7a makes this case unnecessary)
8828 e 0 2 3 (case 7b makes this case unnecessary)
8829 f 0 3 1 (case 7b makes this case unnecessary)
8830 g 1 2 1 (case 7b makes this case unnecessary)
8834 bytes_to_stretch (fragS
*this_frag
,
8840 int bytes_short
= desired_diff
- num_widens
;
8842 assert (desired_diff
>= 0 && desired_diff
< 8);
8843 if (desired_diff
== 0)
8846 assert (wide_nops
> 0 || num_widens
> 0);
8848 /* Always prefer widening to NOP-filling. */
8849 if (bytes_short
< 0)
8851 /* There are enough RELAX_NARROW frags after this one
8852 to align the target without widening this frag in any way. */
8856 if (bytes_short
== 0)
8858 /* Widen every narrow between here and the align target
8859 and the align target will be properly aligned. */
8860 if (this_frag
->fr_subtype
== RELAX_FILL_NOP
)
8866 /* From here we will need at least one NOP to get an alignment.
8867 However, we may not be able to align at all, in which case,
8869 if (this_frag
->fr_subtype
== RELAX_FILL_NOP
)
8871 switch (desired_diff
)
8876 if (!this_frag
->tc_frag_data
.is_no_density
&& narrow_nops
== 1)
8877 return 2; /* case 2 */
8883 return 3; /* case 3a */
8885 if (num_widens
>= 1 && wide_nops
== 1)
8886 return 3; /* case 4a */
8887 if (!this_frag
->tc_frag_data
.is_no_density
&& narrow_nops
== 2)
8888 return 2; /* case 4b */
8891 if (num_widens
>= 2 && wide_nops
== 1)
8892 return 3; /* case 5a */
8893 /* We will need two nops. Are there enough nops
8894 between here and the align target? */
8895 if (wide_nops
< 2 || narrow_nops
== 0)
8897 /* Are there other nops closer that can serve instead? */
8898 if (wide_nops
> 2 && narrow_nops
> 1)
8900 /* Take the density one first, because there might not be
8901 another density one available. */
8902 if (!this_frag
->tc_frag_data
.is_no_density
)
8903 return 2; /* case 5b narrow */
8905 return 3; /* case 5b wide */
8909 return 3; /* case 6a */
8910 else if (num_widens
>= 3 && wide_nops
== 1)
8911 return 3; /* case 6b */
8914 if (wide_nops
== 1 && num_widens
>= 4)
8915 return 3; /* case 7a */
8916 else if (wide_nops
== 2 && num_widens
>= 1)
8917 return 3; /* case 7b */
8925 /* We will need a NOP no matter what, but should we widen
8926 this instruction to help?
8928 This is a RELAX_NARROW frag. */
8929 switch (desired_diff
)
8938 if (wide_nops
>= 1 && num_widens
== 1)
8939 return 1; /* case 4a */
8942 if (wide_nops
>= 1 && num_widens
== 2)
8943 return 1; /* case 5a */
8947 return 0; /* case 6a */
8948 else if (wide_nops
>= 1 && num_widens
== 3)
8949 return 1; /* case 6b */
8952 if (wide_nops
>= 1 && num_widens
== 4)
8953 return 1; /* case 7a */
8954 else if (wide_nops
>= 2 && num_widens
== 1)
8955 return 1; /* case 7b */
8968 relax_frag_immed (segT segP
,
8975 bfd_boolean estimate_only
)
8979 bfd_boolean negatable_branch
= FALSE
;
8980 bfd_boolean branch_jmp_to_next
= FALSE
;
8981 bfd_boolean from_wide_insn
= FALSE
;
8982 xtensa_isa isa
= xtensa_default_isa
;
8984 offsetT frag_offset
;
8987 int num_text_bytes
, num_literal_bytes
;
8988 int literal_diff
, total_text_diff
, this_text_diff
, first
;
8990 assert (fragP
->fr_opcode
!= NULL
);
8992 xg_clear_vinsn (&cur_vinsn
);
8993 vinsn_from_chars (&cur_vinsn
, fragP
->fr_opcode
);
8994 if (cur_vinsn
.num_slots
> 1)
8995 from_wide_insn
= TRUE
;
8997 tinsn
= cur_vinsn
.slots
[slot
];
8998 tinsn_immed_from_frag (&tinsn
, fragP
, slot
);
9000 if (estimate_only
&& xtensa_opcode_is_loop (isa
, tinsn
.opcode
) == 1)
9003 if (workaround_b_j_loop_end
&& ! fragP
->tc_frag_data
.is_no_transform
)
9004 branch_jmp_to_next
= is_branch_jmp_to_next (&tinsn
, fragP
);
9006 negatable_branch
= (xtensa_opcode_is_branch (isa
, tinsn
.opcode
) == 1);
9008 old_size
= xtensa_format_length (isa
, fmt
);
9010 /* Special case: replace a branch to the next instruction with a NOP.
9011 This is required to work around a hardware bug in T1040.0 and also
9012 serves as an optimization. */
9014 if (branch_jmp_to_next
9015 && ((old_size
== 2) || (old_size
== 3))
9016 && !next_frag_is_loop_target (fragP
))
9019 /* Here is the fun stuff: Get the immediate field from this
9020 instruction. If it fits, we are done. If not, find the next
9021 instruction sequence that fits. */
9023 frag_offset
= fragP
->fr_opcode
- fragP
->fr_literal
;
9024 istack_init (&istack
);
9025 num_steps
= xg_assembly_relax (&istack
, &tinsn
, segP
, fragP
, frag_offset
,
9026 min_steps
, stretch
);
9027 if (num_steps
< min_steps
)
9029 as_fatal (_("internal error: relaxation failed"));
9033 if (num_steps
> RELAX_IMMED_MAXSTEPS
)
9035 as_fatal (_("internal error: relaxation requires too many steps"));
9039 fragP
->tc_frag_data
.slot_subtypes
[slot
] = (int) RELAX_IMMED
+ num_steps
;
9041 /* Figure out the number of bytes needed. */
9043 num_literal_bytes
= get_num_stack_literal_bytes (&istack
);
9045 num_literal_bytes
- fragP
->tc_frag_data
.literal_expansion
[slot
];
9047 while (istack
.insn
[first
].opcode
== XTENSA_UNDEFINED
)
9050 num_text_bytes
= get_num_stack_text_bytes (&istack
);
9054 num_text_bytes
+= old_size
;
9055 if (opcode_fits_format_slot (istack
.insn
[first
].opcode
, fmt
, slot
))
9056 num_text_bytes
-= xg_get_single_size (istack
.insn
[first
].opcode
);
9059 total_text_diff
= num_text_bytes
- old_size
;
9060 this_text_diff
= total_text_diff
- fragP
->tc_frag_data
.text_expansion
[slot
];
9062 /* It MUST get larger. If not, we could get an infinite loop. */
9063 assert (num_text_bytes
>= 0);
9064 assert (literal_diff
>= 0);
9065 assert (total_text_diff
>= 0);
9067 fragP
->tc_frag_data
.text_expansion
[slot
] = total_text_diff
;
9068 fragP
->tc_frag_data
.literal_expansion
[slot
] = num_literal_bytes
;
9069 assert (fragP
->tc_frag_data
.text_expansion
[slot
] >= 0);
9070 assert (fragP
->tc_frag_data
.literal_expansion
[slot
] >= 0);
9072 /* Find the associated expandable literal for this. */
9073 if (literal_diff
!= 0)
9075 lit_fragP
= fragP
->tc_frag_data
.literal_frags
[slot
];
9078 assert (literal_diff
== 4);
9079 lit_fragP
->tc_frag_data
.unreported_expansion
+= literal_diff
;
9081 /* We expect that the literal section state has NOT been
9083 assert (lit_fragP
->fr_type
== rs_machine_dependent
9084 && lit_fragP
->fr_subtype
== RELAX_LITERAL
);
9085 lit_fragP
->fr_subtype
= RELAX_LITERAL_NR
;
9087 /* We need to mark this section for another iteration
9093 if (negatable_branch
&& istack
.ninsn
> 1)
9094 update_next_frag_state (fragP
);
9096 return this_text_diff
;
9100 /* md_convert_frag Hook and Helper Functions. */
9102 static void convert_frag_align_next_opcode (fragS
*);
9103 static void convert_frag_narrow (segT
, fragS
*, xtensa_format
, int);
9104 static void convert_frag_fill_nop (fragS
*);
9105 static void convert_frag_immed (segT
, fragS
*, int, xtensa_format
, int);
9108 md_convert_frag (bfd
*abfd ATTRIBUTE_UNUSED
, segT sec
, fragS
*fragp
)
9110 static xtensa_insnbuf vbuf
= NULL
;
9111 xtensa_isa isa
= xtensa_default_isa
;
9118 as_where (&file_name
, &line
);
9119 new_logical_line (fragp
->fr_file
, fragp
->fr_line
);
9121 switch (fragp
->fr_subtype
)
9123 case RELAX_ALIGN_NEXT_OPCODE
:
9124 /* Always convert. */
9125 convert_frag_align_next_opcode (fragp
);
9128 case RELAX_DESIRE_ALIGN
:
9129 /* Do nothing. If not aligned already, too bad. */
9133 case RELAX_LITERAL_FINAL
:
9138 vbuf
= xtensa_insnbuf_alloc (isa
);
9140 xtensa_insnbuf_from_chars
9141 (isa
, vbuf
, (unsigned char *) fragp
->fr_opcode
, 0);
9142 fmt
= xtensa_format_decode (isa
, vbuf
);
9143 num_slots
= xtensa_format_num_slots (isa
, fmt
);
9145 for (slot
= 0; slot
< num_slots
; slot
++)
9147 switch (fragp
->tc_frag_data
.slot_subtypes
[slot
])
9150 convert_frag_narrow (sec
, fragp
, fmt
, slot
);
9154 case RELAX_IMMED_STEP1
:
9155 case RELAX_IMMED_STEP2
:
9156 case RELAX_IMMED_STEP3
:
9157 /* Place the immediate. */
9160 fragp
->tc_frag_data
.slot_subtypes
[slot
] - RELAX_IMMED
,
9165 /* This is OK because some slots could have
9166 relaxations and others have none. */
9172 case RELAX_UNREACHABLE
:
9173 memset (&fragp
->fr_literal
[fragp
->fr_fix
], 0, fragp
->fr_var
);
9174 fragp
->fr_fix
+= fragp
->tc_frag_data
.text_expansion
[0];
9175 fragp
->fr_var
-= fragp
->tc_frag_data
.text_expansion
[0];
9179 case RELAX_MAYBE_UNREACHABLE
:
9180 case RELAX_MAYBE_DESIRE_ALIGN
:
9184 case RELAX_FILL_NOP
:
9185 convert_frag_fill_nop (fragp
);
9188 case RELAX_LITERAL_NR
:
9189 if (use_literal_section
)
9191 /* This should have been handled during relaxation. When
9192 relaxing a code segment, literals sometimes need to be
9193 added to the corresponding literal segment. If that
9194 literal segment has already been relaxed, then we end up
9195 in this situation. Marking the literal segments as data
9196 would make this happen less often (since GAS always relaxes
9197 code before data), but we could still get into trouble if
9198 there are instructions in a segment that is not marked as
9199 containing code. Until we can implement a better solution,
9200 cheat and adjust the addresses of all the following frags.
9201 This could break subsequent alignments, but the linker's
9202 literal coalescing will do that anyway. */
9205 fragp
->fr_subtype
= RELAX_LITERAL_FINAL
;
9206 assert (fragp
->tc_frag_data
.unreported_expansion
== 4);
9207 memset (&fragp
->fr_literal
[fragp
->fr_fix
], 0, 4);
9210 for (f
= fragp
->fr_next
; f
; f
= f
->fr_next
)
9214 as_bad (_("invalid relaxation fragment result"));
9219 new_logical_line (file_name
, line
);
9224 convert_frag_align_next_opcode (fragS
*fragp
)
9226 char *nop_buf
; /* Location for Writing. */
9227 bfd_boolean use_no_density
= fragp
->tc_frag_data
.is_no_density
;
9228 addressT aligned_address
;
9232 aligned_address
= get_noop_aligned_address (fragp
, fragp
->fr_address
+
9234 fill_size
= aligned_address
- (fragp
->fr_address
+ fragp
->fr_fix
);
9235 nop_count
= get_text_align_nop_count (fill_size
, use_no_density
);
9236 nop_buf
= fragp
->fr_literal
+ fragp
->fr_fix
;
9238 for (nop
= 0; nop
< nop_count
; nop
++)
9241 nop_size
= get_text_align_nth_nop_size (fill_size
, nop
, use_no_density
);
9243 assemble_nop (nop_size
, nop_buf
);
9244 nop_buf
+= nop_size
;
9247 fragp
->fr_fix
+= fill_size
;
9248 fragp
->fr_var
-= fill_size
;
9253 convert_frag_narrow (segT segP
, fragS
*fragP
, xtensa_format fmt
, int slot
)
9255 TInsn tinsn
, single_target
;
9256 int size
, old_size
, diff
;
9257 offsetT frag_offset
;
9260 tinsn_from_chars (&tinsn
, fragP
->fr_opcode
, 0);
9262 if (fragP
->tc_frag_data
.is_aligning_branch
== 1)
9264 assert (fragP
->tc_frag_data
.text_expansion
[0] == 1
9265 || fragP
->tc_frag_data
.text_expansion
[0] == 0);
9266 convert_frag_immed (segP
, fragP
, fragP
->tc_frag_data
.text_expansion
[0],
9271 if (fragP
->tc_frag_data
.text_expansion
[0] == 0)
9273 /* No conversion. */
9278 assert (fragP
->fr_opcode
!= NULL
);
9280 /* Frags in this relaxation state should only contain
9281 single instruction bundles. */
9282 tinsn_immed_from_frag (&tinsn
, fragP
, 0);
9284 /* Just convert it to a wide form.... */
9286 old_size
= xg_get_single_size (tinsn
.opcode
);
9288 tinsn_init (&single_target
);
9289 frag_offset
= fragP
->fr_opcode
- fragP
->fr_literal
;
9291 if (! xg_is_single_relaxable_insn (&tinsn
, &single_target
, FALSE
))
9293 as_bad (_("unable to widen instruction"));
9297 size
= xg_get_single_size (single_target
.opcode
);
9298 xg_emit_insn_to_buf (&single_target
, fragP
->fr_opcode
, fragP
,
9301 diff
= size
- old_size
;
9303 assert (diff
<= fragP
->fr_var
);
9304 fragP
->fr_var
-= diff
;
9305 fragP
->fr_fix
+= diff
;
9313 convert_frag_fill_nop (fragS
*fragP
)
9315 char *loc
= &fragP
->fr_literal
[fragP
->fr_fix
];
9316 int size
= fragP
->tc_frag_data
.text_expansion
[0];
9317 assert ((unsigned) size
== (fragP
->fr_next
->fr_address
9318 - fragP
->fr_address
- fragP
->fr_fix
));
9321 /* No conversion. */
9325 assemble_nop (size
, loc
);
9326 fragP
->tc_frag_data
.is_insn
= TRUE
;
9327 fragP
->fr_var
-= size
;
9328 fragP
->fr_fix
+= size
;
9333 static fixS
*fix_new_exp_in_seg
9334 (segT
, subsegT
, fragS
*, int, int, expressionS
*, int,
9335 bfd_reloc_code_real_type
);
9336 static void convert_frag_immed_finish_loop (segT
, fragS
*, TInsn
*);
9339 convert_frag_immed (segT segP
,
9345 char *immed_instr
= fragP
->fr_opcode
;
9347 bfd_boolean expanded
= FALSE
;
9348 bfd_boolean branch_jmp_to_next
= FALSE
;
9349 char *fr_opcode
= fragP
->fr_opcode
;
9350 xtensa_isa isa
= xtensa_default_isa
;
9351 bfd_boolean from_wide_insn
= FALSE
;
9353 bfd_boolean is_loop
;
9355 assert (fr_opcode
!= NULL
);
9357 xg_clear_vinsn (&cur_vinsn
);
9359 vinsn_from_chars (&cur_vinsn
, fr_opcode
);
9360 if (cur_vinsn
.num_slots
> 1)
9361 from_wide_insn
= TRUE
;
9363 orig_tinsn
= cur_vinsn
.slots
[slot
];
9364 tinsn_immed_from_frag (&orig_tinsn
, fragP
, slot
);
9366 is_loop
= xtensa_opcode_is_loop (xtensa_default_isa
, orig_tinsn
.opcode
) == 1;
9368 if (workaround_b_j_loop_end
&& ! fragP
->tc_frag_data
.is_no_transform
)
9369 branch_jmp_to_next
= is_branch_jmp_to_next (&orig_tinsn
, fragP
);
9371 if (branch_jmp_to_next
&& !next_frag_is_loop_target (fragP
))
9373 /* Conversion just inserts a NOP and marks the fix as completed. */
9374 bytes
= xtensa_format_length (isa
, fmt
);
9377 cur_vinsn
.slots
[slot
].opcode
=
9378 xtensa_format_slot_nop_opcode (isa
, cur_vinsn
.format
, slot
);
9379 cur_vinsn
.slots
[slot
].ntok
= 0;
9383 bytes
+= fragP
->tc_frag_data
.text_expansion
[0];
9384 assert (bytes
== 2 || bytes
== 3);
9385 build_nop (&cur_vinsn
.slots
[0], bytes
);
9386 fragP
->fr_fix
+= fragP
->tc_frag_data
.text_expansion
[0];
9388 vinsn_to_insnbuf (&cur_vinsn
, fr_opcode
, frag_now
, TRUE
);
9389 xtensa_insnbuf_to_chars
9390 (isa
, cur_vinsn
.insnbuf
, (unsigned char *) fr_opcode
, 0);
9395 /* Here is the fun stuff: Get the immediate field from this
9396 instruction. If it fits, we're done. If not, find the next
9397 instruction sequence that fits. */
9401 symbolS
*lit_sym
= NULL
;
9403 int target_offset
= 0;
9406 symbolS
*gen_label
= NULL
;
9407 offsetT frag_offset
;
9408 bfd_boolean first
= TRUE
;
9409 bfd_boolean last_is_jump
;
9411 /* It does not fit. Find something that does and
9412 convert immediately. */
9413 frag_offset
= fr_opcode
- fragP
->fr_literal
;
9414 istack_init (&istack
);
9415 xg_assembly_relax (&istack
, &orig_tinsn
,
9416 segP
, fragP
, frag_offset
, min_steps
, 0);
9418 old_size
= xtensa_format_length (isa
, fmt
);
9420 /* Assemble this right inline. */
9422 /* First, create the mapping from a label name to the REAL label. */
9424 for (i
= 0; i
< istack
.ninsn
; i
++)
9426 TInsn
*tinsn
= &istack
.insn
[i
];
9429 switch (tinsn
->insn_type
)
9432 if (lit_sym
!= NULL
)
9433 as_bad (_("multiple literals in expansion"));
9434 /* First find the appropriate space in the literal pool. */
9435 lit_frag
= fragP
->tc_frag_data
.literal_frags
[slot
];
9436 if (lit_frag
== NULL
)
9437 as_bad (_("no registered fragment for literal"));
9438 if (tinsn
->ntok
!= 1)
9439 as_bad (_("number of literal tokens != 1"));
9441 /* Set the literal symbol and add a fixup. */
9442 lit_sym
= lit_frag
->fr_symbol
;
9446 if (align_targets
&& !is_loop
)
9448 fragS
*unreach
= fragP
->fr_next
;
9449 while (!(unreach
->fr_type
== rs_machine_dependent
9450 && (unreach
->fr_subtype
== RELAX_MAYBE_UNREACHABLE
9451 || unreach
->fr_subtype
== RELAX_UNREACHABLE
)))
9453 unreach
= unreach
->fr_next
;
9456 assert (unreach
->fr_type
== rs_machine_dependent
9457 && (unreach
->fr_subtype
== RELAX_MAYBE_UNREACHABLE
9458 || unreach
->fr_subtype
== RELAX_UNREACHABLE
));
9460 target_offset
+= unreach
->tc_frag_data
.text_expansion
[0];
9462 assert (gen_label
== NULL
);
9463 gen_label
= symbol_new (FAKE_LABEL_NAME
, now_seg
,
9464 fr_opcode
- fragP
->fr_literal
9465 + target_offset
, fragP
);
9469 if (first
&& from_wide_insn
)
9471 target_offset
+= xtensa_format_length (isa
, fmt
);
9473 if (!opcode_fits_format_slot (tinsn
->opcode
, fmt
, slot
))
9474 target_offset
+= xg_get_single_size (tinsn
->opcode
);
9477 target_offset
+= xg_get_single_size (tinsn
->opcode
);
9484 last_is_jump
= FALSE
;
9485 for (i
= 0; i
< istack
.ninsn
; i
++)
9487 TInsn
*tinsn
= &istack
.insn
[i
];
9491 bfd_reloc_code_real_type reloc_type
;
9493 switch (tinsn
->insn_type
)
9496 lit_frag
= fragP
->tc_frag_data
.literal_frags
[slot
];
9497 /* Already checked. */
9498 assert (lit_frag
!= NULL
);
9499 assert (lit_sym
!= NULL
);
9500 assert (tinsn
->ntok
== 1);
9502 target_seg
= S_GET_SEGMENT (lit_sym
);
9503 assert (target_seg
);
9504 reloc_type
= map_operator_to_reloc (tinsn
->tok
[0].X_op
);
9505 fix_new_exp_in_seg (target_seg
, 0, lit_frag
, 0, 4,
9506 &tinsn
->tok
[0], FALSE
, reloc_type
);
9513 xg_resolve_labels (tinsn
, gen_label
);
9514 xg_resolve_literals (tinsn
, lit_sym
);
9515 if (from_wide_insn
&& first
)
9518 if (opcode_fits_format_slot (tinsn
->opcode
, fmt
, slot
))
9520 cur_vinsn
.slots
[slot
] = *tinsn
;
9524 cur_vinsn
.slots
[slot
].opcode
=
9525 xtensa_format_slot_nop_opcode (isa
, fmt
, slot
);
9526 cur_vinsn
.slots
[slot
].ntok
= 0;
9528 vinsn_to_insnbuf (&cur_vinsn
, immed_instr
, fragP
, TRUE
);
9529 xtensa_insnbuf_to_chars (isa
, cur_vinsn
.insnbuf
,
9530 (unsigned char *) immed_instr
, 0);
9531 fragP
->tc_frag_data
.is_insn
= TRUE
;
9532 size
= xtensa_format_length (isa
, fmt
);
9533 if (!opcode_fits_format_slot (tinsn
->opcode
, fmt
, slot
))
9536 (tinsn
, immed_instr
+ size
, fragP
,
9537 immed_instr
- fragP
->fr_literal
+ size
, TRUE
);
9538 size
+= xg_get_single_size (tinsn
->opcode
);
9543 size
= xg_get_single_size (tinsn
->opcode
);
9544 xg_emit_insn_to_buf (tinsn
, immed_instr
, fragP
,
9545 immed_instr
- fragP
->fr_literal
, TRUE
);
9547 immed_instr
+= size
;
9553 diff
= total_size
- old_size
;
9557 assert (diff
<= fragP
->fr_var
);
9558 fragP
->fr_var
-= diff
;
9559 fragP
->fr_fix
+= diff
;
9562 /* Check for undefined immediates in LOOP instructions. */
9566 sym
= orig_tinsn
.tok
[1].X_add_symbol
;
9567 if (sym
!= NULL
&& !S_IS_DEFINED (sym
))
9569 as_bad (_("unresolved loop target symbol: %s"), S_GET_NAME (sym
));
9572 sym
= orig_tinsn
.tok
[1].X_op_symbol
;
9573 if (sym
!= NULL
&& !S_IS_DEFINED (sym
))
9575 as_bad (_("unresolved loop target symbol: %s"), S_GET_NAME (sym
));
9580 if (expanded
&& xtensa_opcode_is_loop (isa
, orig_tinsn
.opcode
) == 1)
9581 convert_frag_immed_finish_loop (segP
, fragP
, &orig_tinsn
);
9583 if (expanded
&& is_direct_call_opcode (orig_tinsn
.opcode
))
9585 /* Add an expansion note on the expanded instruction. */
9586 fix_new_exp_in_seg (now_seg
, 0, fragP
, fr_opcode
- fragP
->fr_literal
, 4,
9587 &orig_tinsn
.tok
[0], TRUE
,
9588 BFD_RELOC_XTENSA_ASM_EXPAND
);
9593 /* Add a new fix expression into the desired segment. We have to
9594 switch to that segment to do this. */
9597 fix_new_exp_in_seg (segT new_seg
,
9604 bfd_reloc_code_real_type r_type
)
9608 subsegT subseg
= now_subseg
;
9610 assert (new_seg
!= 0);
9611 subseg_set (new_seg
, new_subseg
);
9613 new_fix
= fix_new_exp (frag
, where
, size
, exp
, pcrel
, r_type
);
9614 subseg_set (seg
, subseg
);
9619 /* Relax a loop instruction so that it can span loop >256 bytes.
9625 addi as, as, lo8 (label-.L1)
9626 addmi as, as, mid8 (label-.L1)
9637 convert_frag_immed_finish_loop (segT segP
, fragS
*fragP
, TInsn
*tinsn
)
9642 unsigned long target
;
9643 static xtensa_insnbuf insnbuf
= NULL
;
9644 unsigned int loop_length
, loop_length_hi
, loop_length_lo
;
9645 xtensa_isa isa
= xtensa_default_isa
;
9646 addressT loop_offset
;
9647 addressT addi_offset
= 9;
9648 addressT addmi_offset
= 12;
9653 insnbuf
= xtensa_insnbuf_alloc (isa
);
9655 /* Get the loop offset. */
9656 loop_offset
= get_expanded_loop_offset (tinsn
->opcode
);
9658 /* Validate that there really is a LOOP at the loop_offset. Because
9659 loops are not bundleable, we can assume that the instruction will be
9661 tinsn_from_chars (&loop_insn
, fragP
->fr_opcode
+ loop_offset
, 0);
9662 tinsn_immed_from_frag (&loop_insn
, fragP
, 0);
9664 assert (xtensa_opcode_is_loop (isa
, loop_insn
.opcode
) == 1);
9665 addi_offset
+= loop_offset
;
9666 addmi_offset
+= loop_offset
;
9668 assert (tinsn
->ntok
== 2);
9669 if (tinsn
->tok
[1].X_op
== O_constant
)
9670 target
= tinsn
->tok
[1].X_add_number
;
9671 else if (tinsn
->tok
[1].X_op
== O_symbol
)
9673 /* Find the fragment. */
9674 symbolS
*sym
= tinsn
->tok
[1].X_add_symbol
;
9675 assert (S_GET_SEGMENT (sym
) == segP
9676 || S_GET_SEGMENT (sym
) == absolute_section
);
9677 target
= (S_GET_VALUE (sym
) + tinsn
->tok
[1].X_add_number
);
9681 as_bad (_("invalid expression evaluation type %d"), tinsn
->tok
[1].X_op
);
9685 loop_length
= target
- (fragP
->fr_address
+ fragP
->fr_fix
);
9686 loop_length_hi
= loop_length
& ~0x0ff;
9687 loop_length_lo
= loop_length
& 0x0ff;
9688 if (loop_length_lo
>= 128)
9690 loop_length_lo
-= 256;
9691 loop_length_hi
+= 256;
9694 /* Because addmi sign-extends the immediate, 'loop_length_hi' can be at most
9695 32512. If the loop is larger than that, then we just fail. */
9696 if (loop_length_hi
> 32512)
9697 as_bad_where (fragP
->fr_file
, fragP
->fr_line
,
9698 _("loop too long for LOOP instruction"));
9700 tinsn_from_chars (&addi_insn
, fragP
->fr_opcode
+ addi_offset
, 0);
9701 assert (addi_insn
.opcode
== xtensa_addi_opcode
);
9703 tinsn_from_chars (&addmi_insn
, fragP
->fr_opcode
+ addmi_offset
, 0);
9704 assert (addmi_insn
.opcode
== xtensa_addmi_opcode
);
9706 set_expr_const (&addi_insn
.tok
[2], loop_length_lo
);
9707 tinsn_to_insnbuf (&addi_insn
, insnbuf
);
9709 fragP
->tc_frag_data
.is_insn
= TRUE
;
9710 xtensa_insnbuf_to_chars
9711 (isa
, insnbuf
, (unsigned char *) fragP
->fr_opcode
+ addi_offset
, 0);
9713 set_expr_const (&addmi_insn
.tok
[2], loop_length_hi
);
9714 tinsn_to_insnbuf (&addmi_insn
, insnbuf
);
9715 xtensa_insnbuf_to_chars
9716 (isa
, insnbuf
, (unsigned char *) fragP
->fr_opcode
+ addmi_offset
, 0);
9718 /* Walk through all of the frags from here to the loop end
9719 and mark them as no_transform to keep them from being modified
9720 by the linker. If we ever have a relocation for the
9721 addi/addmi of the difference of two symbols we can remove this. */
9724 for (next_fragP
= fragP
; next_fragP
!= NULL
;
9725 next_fragP
= next_fragP
->fr_next
)
9727 next_fragP
->tc_frag_data
.is_no_transform
= TRUE
;
9728 if (next_fragP
->tc_frag_data
.is_loop_target
)
9730 if (target_count
== 2)
9736 /* A map that keeps information on a per-subsegment basis. This is
9737 maintained during initial assembly, but is invalid once the
9738 subsegments are smashed together. I.E., it cannot be used during
9741 typedef struct subseg_map_struct
9749 float total_freq
; /* fall-through + branch target frequency */
9750 float target_freq
; /* branch target frequency alone */
9752 struct subseg_map_struct
*next
;
9756 static subseg_map
*sseg_map
= NULL
;
9759 get_subseg_info (segT seg
, subsegT subseg
)
9761 subseg_map
*subseg_e
;
9763 for (subseg_e
= sseg_map
; subseg_e
; subseg_e
= subseg_e
->next
)
9765 if (seg
== subseg_e
->seg
&& subseg
== subseg_e
->subseg
)
9773 add_subseg_info (segT seg
, subsegT subseg
)
9775 subseg_map
*subseg_e
= (subseg_map
*) xmalloc (sizeof (subseg_map
));
9776 memset (subseg_e
, 0, sizeof (subseg_map
));
9777 subseg_e
->seg
= seg
;
9778 subseg_e
->subseg
= subseg
;
9779 subseg_e
->flags
= 0;
9780 /* Start off considering every branch target very important. */
9781 subseg_e
->target_freq
= 1.0;
9782 subseg_e
->total_freq
= 1.0;
9783 subseg_e
->next
= sseg_map
;
9784 sseg_map
= subseg_e
;
9790 get_last_insn_flags (segT seg
, subsegT subseg
)
9792 subseg_map
*subseg_e
= get_subseg_info (seg
, subseg
);
9794 return subseg_e
->flags
;
9800 set_last_insn_flags (segT seg
,
9805 subseg_map
*subseg_e
= get_subseg_info (seg
, subseg
);
9807 subseg_e
= add_subseg_info (seg
, subseg
);
9809 subseg_e
->flags
|= fl
;
9811 subseg_e
->flags
&= ~fl
;
9816 get_subseg_total_freq (segT seg
, subsegT subseg
)
9818 subseg_map
*subseg_e
= get_subseg_info (seg
, subseg
);
9820 return subseg_e
->total_freq
;
9826 get_subseg_target_freq (segT seg
, subsegT subseg
)
9828 subseg_map
*subseg_e
= get_subseg_info (seg
, subseg
);
9830 return subseg_e
->target_freq
;
9836 set_subseg_freq (segT seg
, subsegT subseg
, float total_f
, float target_f
)
9838 subseg_map
*subseg_e
= get_subseg_info (seg
, subseg
);
9840 subseg_e
= add_subseg_info (seg
, subseg
);
9841 subseg_e
->total_freq
= total_f
;
9842 subseg_e
->target_freq
= target_f
;
9846 /* Segment Lists and emit_state Stuff. */
9849 xtensa_move_seg_list_to_beginning (seg_list
*head
)
9854 segT literal_section
= head
->seg
;
9856 /* Move the literal section to the front of the section list. */
9857 assert (literal_section
);
9858 if (literal_section
!= stdoutput
->sections
)
9860 bfd_section_list_remove (stdoutput
, literal_section
);
9861 bfd_section_list_prepend (stdoutput
, literal_section
);
9868 static void mark_literal_frags (seg_list
*);
9871 xtensa_move_literals (void)
9874 frchainS
*frchain_from
, *frchain_to
;
9875 fragS
*search_frag
, *next_frag
, *last_frag
, *literal_pool
, *insert_after
;
9876 fragS
**frag_splice
;
9879 fixS
*fix
, *next_fix
, **fix_splice
;
9882 mark_literal_frags (literal_head
->next
);
9884 if (use_literal_section
)
9887 for (segment
= literal_head
->next
; segment
; segment
= segment
->next
)
9889 /* Keep the literals for .init and .fini in separate sections. */
9890 if (!strcmp (segment_name (segment
->seg
), INIT_SECTION_NAME
)
9891 || !strcmp (segment_name (segment
->seg
), FINI_SECTION_NAME
))
9894 frchain_from
= seg_info (segment
->seg
)->frchainP
;
9895 search_frag
= frchain_from
->frch_root
;
9896 literal_pool
= NULL
;
9898 frag_splice
= &(frchain_from
->frch_root
);
9900 while (!search_frag
->tc_frag_data
.literal_frag
)
9902 assert (search_frag
->fr_fix
== 0
9903 || search_frag
->fr_type
== rs_align
);
9904 search_frag
= search_frag
->fr_next
;
9907 assert (search_frag
->tc_frag_data
.literal_frag
->fr_subtype
9908 == RELAX_LITERAL_POOL_BEGIN
);
9909 xtensa_switch_section_emit_state (&state
, segment
->seg
, 0);
9911 /* Make sure that all the frags in this series are closed, and
9912 that there is at least one left over of zero-size. This
9913 prevents us from making a segment with an frchain without any
9915 frag_variant (rs_fill
, 0, 0, 0, NULL
, 0, NULL
);
9916 xtensa_set_frag_assembly_state (frag_now
);
9917 last_frag
= frag_now
;
9918 frag_variant (rs_fill
, 0, 0, 0, NULL
, 0, NULL
);
9919 xtensa_set_frag_assembly_state (frag_now
);
9921 while (search_frag
!= frag_now
)
9923 next_frag
= search_frag
->fr_next
;
9925 /* First, move the frag out of the literal section and
9926 to the appropriate place. */
9927 if (search_frag
->tc_frag_data
.literal_frag
)
9929 literal_pool
= search_frag
->tc_frag_data
.literal_frag
;
9930 assert (literal_pool
->fr_subtype
== RELAX_LITERAL_POOL_BEGIN
);
9931 frchain_to
= literal_pool
->tc_frag_data
.lit_frchain
;
9932 assert (frchain_to
);
9934 insert_after
= literal_pool
->tc_frag_data
.literal_frag
;
9935 dest_seg
= insert_after
->fr_next
->tc_frag_data
.lit_seg
;
9937 *frag_splice
= next_frag
;
9938 search_frag
->fr_next
= insert_after
->fr_next
;
9939 insert_after
->fr_next
= search_frag
;
9940 search_frag
->tc_frag_data
.lit_seg
= dest_seg
;
9941 literal_pool
->tc_frag_data
.literal_frag
= search_frag
;
9943 /* Now move any fixups associated with this frag to the
9945 fix
= frchain_from
->fix_root
;
9946 fix_splice
= &(frchain_from
->fix_root
);
9949 next_fix
= fix
->fx_next
;
9950 if (fix
->fx_frag
== search_frag
)
9952 *fix_splice
= next_fix
;
9953 fix
->fx_next
= frchain_to
->fix_root
;
9954 frchain_to
->fix_root
= fix
;
9955 if (frchain_to
->fix_tail
== NULL
)
9956 frchain_to
->fix_tail
= fix
;
9959 fix_splice
= &(fix
->fx_next
);
9962 search_frag
= next_frag
;
9965 if (frchain_from
->fix_root
!= NULL
)
9967 frchain_from
= seg_info (segment
->seg
)->frchainP
;
9968 as_warn (_("fixes not all moved from %s"), segment
->seg
->name
);
9970 assert (frchain_from
->fix_root
== NULL
);
9972 frchain_from
->fix_tail
= NULL
;
9973 xtensa_restore_emit_state (&state
);
9976 /* Now fix up the SEGMENT value for all the literal symbols. */
9977 for (lit
= literal_syms
; lit
; lit
= lit
->next
)
9979 symbolS
*lit_sym
= lit
->sym
;
9980 segT dest_seg
= symbol_get_frag (lit_sym
)->tc_frag_data
.lit_seg
;
9982 S_SET_SEGMENT (lit_sym
, dest_seg
);
9987 /* Walk over all the frags for segments in a list and mark them as
9988 containing literals. As clunky as this is, we can't rely on frag_var
9989 and frag_variant to get called in all situations. */
9992 mark_literal_frags (seg_list
*segment
)
9994 frchainS
*frchain_from
;
9999 frchain_from
= seg_info (segment
->seg
)->frchainP
;
10000 search_frag
= frchain_from
->frch_root
;
10001 while (search_frag
)
10003 search_frag
->tc_frag_data
.is_literal
= TRUE
;
10004 search_frag
= search_frag
->fr_next
;
10006 segment
= segment
->next
;
10012 xtensa_reorder_seg_list (seg_list
*head
, segT after
)
10014 /* Move all of the sections in the section list to come
10015 after "after" in the gnu segment list. */
10020 segT literal_section
= head
->seg
;
10022 /* Move the literal section after "after". */
10023 assert (literal_section
);
10024 if (literal_section
!= after
)
10026 bfd_section_list_remove (stdoutput
, literal_section
);
10027 bfd_section_list_insert_after (stdoutput
, after
, literal_section
);
10035 /* Push all the literal segments to the end of the gnu list. */
10038 xtensa_reorder_segments (void)
10045 for (sec
= stdoutput
->sections
; sec
!= NULL
; sec
= sec
->next
)
10051 /* Now that we have the last section, push all the literal
10052 sections to the end. */
10053 xtensa_reorder_seg_list (literal_head
, last_sec
);
10055 /* Now perform the final error check. */
10056 for (sec
= stdoutput
->sections
; sec
!= NULL
; sec
= sec
->next
)
10058 assert (new_count
== old_count
);
10062 /* Change the emit state (seg, subseg, and frag related stuff) to the
10063 correct location. Return a emit_state which can be passed to
10064 xtensa_restore_emit_state to return to current fragment. */
10067 xtensa_switch_to_literal_fragment (emit_state
*result
)
10069 if (directive_state
[directive_absolute_literals
])
10071 segT lit4_seg
= cache_literal_section (TRUE
);
10072 xtensa_switch_section_emit_state (result
, lit4_seg
, 0);
10075 xtensa_switch_to_non_abs_literal_fragment (result
);
10077 /* Do a 4-byte align here. */
10078 frag_align (2, 0, 0);
10079 record_alignment (now_seg
, 2);
10084 xtensa_switch_to_non_abs_literal_fragment (emit_state
*result
)
10086 static bfd_boolean recursive
= FALSE
;
10087 fragS
*pool_location
= get_literal_pool_location (now_seg
);
10089 bfd_boolean is_init
=
10090 (now_seg
&& !strcmp (segment_name (now_seg
), INIT_SECTION_NAME
));
10091 bfd_boolean is_fini
=
10092 (now_seg
&& !strcmp (segment_name (now_seg
), FINI_SECTION_NAME
));
10094 if (pool_location
== NULL
10095 && !use_literal_section
10097 && !is_init
&& ! is_fini
)
10099 as_bad (_("literal pool location required for text-section-literals; specify with .literal_position"));
10101 /* When we mark a literal pool location, we want to put a frag in
10102 the literal pool that points to it. But to do that, we want to
10103 switch_to_literal_fragment. But literal sections don't have
10104 literal pools, so their location is always null, so we would
10105 recurse forever. This is kind of hacky, but it works. */
10108 xtensa_mark_literal_pool_location ();
10112 lit_seg
= cache_literal_section (FALSE
);
10113 xtensa_switch_section_emit_state (result
, lit_seg
, 0);
10115 if (!use_literal_section
10116 && !is_init
&& !is_fini
10117 && get_literal_pool_location (now_seg
) != pool_location
)
10119 /* Close whatever frag is there. */
10120 frag_variant (rs_fill
, 0, 0, 0, NULL
, 0, NULL
);
10121 xtensa_set_frag_assembly_state (frag_now
);
10122 frag_now
->tc_frag_data
.literal_frag
= pool_location
;
10123 frag_variant (rs_fill
, 0, 0, 0, NULL
, 0, NULL
);
10124 xtensa_set_frag_assembly_state (frag_now
);
10129 /* Call this function before emitting data into the literal section.
10130 This is a helper function for xtensa_switch_to_literal_fragment.
10131 This is similar to a .section new_now_seg subseg. */
10134 xtensa_switch_section_emit_state (emit_state
*state
,
10136 subsegT new_now_subseg
)
10138 state
->name
= now_seg
->name
;
10139 state
->now_seg
= now_seg
;
10140 state
->now_subseg
= now_subseg
;
10141 state
->generating_literals
= generating_literals
;
10142 generating_literals
++;
10143 subseg_set (new_now_seg
, new_now_subseg
);
10147 /* Use to restore the emitting into the normal place. */
10150 xtensa_restore_emit_state (emit_state
*state
)
10152 generating_literals
= state
->generating_literals
;
10153 subseg_set (state
->now_seg
, state
->now_subseg
);
10157 /* Predicate function used to look up a section in a particular group. */
10160 match_section_group (bfd
*abfd ATTRIBUTE_UNUSED
, asection
*sec
, void *inf
)
10162 const char *gname
= inf
;
10163 const char *group_name
= elf_group_name (sec
);
10165 return (group_name
== gname
10166 || (group_name
!= NULL
10168 && strcmp (group_name
, gname
) == 0));
10172 /* Get the literal section to be used for the current text section.
10173 The result may be cached in the default_lit_sections structure. */
10176 cache_literal_section (bfd_boolean use_abs_literals
)
10178 const char *text_name
, *group_name
= 0;
10179 char *base_name
, *name
, *suffix
;
10181 segT seg
, current_section
;
10182 int current_subsec
;
10183 bfd_boolean linkonce
= FALSE
;
10185 /* Save the current section/subsection. */
10186 current_section
= now_seg
;
10187 current_subsec
= now_subseg
;
10189 /* Clear the cached values if they are no longer valid. */
10190 if (now_seg
!= default_lit_sections
.current_text_seg
)
10192 default_lit_sections
.current_text_seg
= now_seg
;
10193 default_lit_sections
.lit_seg
= NULL
;
10194 default_lit_sections
.lit4_seg
= NULL
;
10197 /* Check if the literal section is already cached. */
10198 if (use_abs_literals
)
10199 pcached
= &default_lit_sections
.lit4_seg
;
10201 pcached
= &default_lit_sections
.lit_seg
;
10206 text_name
= default_lit_sections
.lit_prefix
;
10207 if (! text_name
|| ! *text_name
)
10209 text_name
= segment_name (current_section
);
10210 group_name
= elf_group_name (current_section
);
10211 linkonce
= (current_section
->flags
& SEC_LINK_ONCE
) != 0;
10214 base_name
= use_abs_literals
? ".lit4" : ".literal";
10217 name
= xmalloc (strlen (base_name
) + strlen (group_name
) + 2);
10218 sprintf (name
, "%s.%s", base_name
, group_name
);
10220 else if (strncmp (text_name
, ".gnu.linkonce.", linkonce_len
) == 0)
10222 suffix
= strchr (text_name
+ linkonce_len
, '.');
10224 name
= xmalloc (linkonce_len
+ strlen (base_name
) + 1
10225 + (suffix
? strlen (suffix
) : 0));
10226 strcpy (name
, ".gnu.linkonce");
10227 strcat (name
, base_name
);
10229 strcat (name
, suffix
);
10234 /* If the section name ends with ".text", then replace that suffix
10235 instead of appending an additional suffix. */
10236 size_t len
= strlen (text_name
);
10237 if (len
>= 5 && strcmp (text_name
+ len
- 5, ".text") == 0)
10240 name
= xmalloc (len
+ strlen (base_name
) + 1);
10241 strcpy (name
, text_name
);
10242 strcpy (name
+ len
, base_name
);
10245 /* Canonicalize section names to allow renaming literal sections.
10246 The group name, if any, came from the current text section and
10247 has already been canonicalized. */
10248 name
= tc_canonicalize_symbol_name (name
);
10250 seg
= bfd_get_section_by_name_if (stdoutput
, name
, match_section_group
,
10251 (void *) group_name
);
10256 seg
= subseg_force_new (name
, 0);
10258 if (! use_abs_literals
)
10260 /* Add the newly created literal segment to the list. */
10261 seg_list
*n
= (seg_list
*) xmalloc (sizeof (seg_list
));
10263 n
->next
= literal_head
->next
;
10264 literal_head
->next
= n
;
10267 flags
= (SEC_HAS_CONTENTS
| SEC_READONLY
| SEC_ALLOC
| SEC_LOAD
10268 | (linkonce
? (SEC_LINK_ONCE
| SEC_LINK_DUPLICATES_DISCARD
) : 0)
10269 | (use_abs_literals
? SEC_DATA
: SEC_CODE
));
10271 elf_group_name (seg
) = group_name
;
10273 bfd_set_section_flags (stdoutput
, seg
, flags
);
10274 bfd_set_section_alignment (stdoutput
, seg
, 2);
10278 subseg_set (current_section
, current_subsec
);
10283 /* Property Tables Stuff. */
10285 #define XTENSA_INSN_SEC_NAME ".xt.insn"
10286 #define XTENSA_LIT_SEC_NAME ".xt.lit"
10287 #define XTENSA_PROP_SEC_NAME ".xt.prop"
10289 typedef bfd_boolean (*frag_predicate
) (const fragS
*);
10290 typedef void (*frag_flags_fn
) (const fragS
*, frag_flags
*);
10292 static bfd_boolean
get_frag_is_literal (const fragS
*);
10293 static void xtensa_create_property_segments
10294 (frag_predicate
, frag_predicate
, const char *, xt_section_type
);
10295 static void xtensa_create_xproperty_segments
10296 (frag_flags_fn
, const char *, xt_section_type
);
10297 static bfd_boolean
section_has_property (segT
, frag_predicate
);
10298 static bfd_boolean
section_has_xproperty (segT
, frag_flags_fn
);
10299 static void add_xt_block_frags
10300 (segT
, xtensa_block_info
**, frag_predicate
, frag_predicate
);
10301 static bfd_boolean
xtensa_frag_flags_is_empty (const frag_flags
*);
10302 static void xtensa_frag_flags_init (frag_flags
*);
10303 static void get_frag_property_flags (const fragS
*, frag_flags
*);
10304 static bfd_vma
frag_flags_to_number (const frag_flags
*);
10305 static void add_xt_prop_frags (segT
, xtensa_block_info
**, frag_flags_fn
);
10307 /* Set up property tables after relaxation. */
10310 xtensa_post_relax_hook (void)
10312 xtensa_move_seg_list_to_beginning (literal_head
);
10314 xtensa_find_unmarked_state_frags ();
10315 xtensa_mark_frags_for_org ();
10316 xtensa_mark_difference_of_two_symbols ();
10318 xtensa_create_property_segments (get_frag_is_literal
,
10320 XTENSA_LIT_SEC_NAME
,
10322 xtensa_create_xproperty_segments (get_frag_property_flags
,
10323 XTENSA_PROP_SEC_NAME
,
10326 if (warn_unaligned_branch_targets
)
10327 bfd_map_over_sections (stdoutput
, xtensa_find_unaligned_branch_targets
, 0);
10328 bfd_map_over_sections (stdoutput
, xtensa_find_unaligned_loops
, 0);
10332 /* This function is only meaningful after xtensa_move_literals. */
10335 get_frag_is_literal (const fragS
*fragP
)
10337 assert (fragP
!= NULL
);
10338 return fragP
->tc_frag_data
.is_literal
;
10343 xtensa_create_property_segments (frag_predicate property_function
,
10344 frag_predicate end_property_function
,
10345 const char *section_name_base
,
10346 xt_section_type sec_type
)
10350 /* Walk over all of the current segments.
10351 Walk over each fragment
10352 For each non-empty fragment,
10353 Build a property record (append where possible). */
10355 for (seclist
= &stdoutput
->sections
;
10356 seclist
&& *seclist
;
10357 seclist
= &(*seclist
)->next
)
10359 segT sec
= *seclist
;
10362 flags
= bfd_get_section_flags (stdoutput
, sec
);
10363 if (flags
& SEC_DEBUGGING
)
10365 if (!(flags
& SEC_ALLOC
))
10368 if (section_has_property (sec
, property_function
))
10370 segment_info_type
*xt_seg_info
;
10371 xtensa_block_info
**xt_blocks
;
10372 segT prop_sec
= xtensa_get_property_section (sec
, section_name_base
);
10374 prop_sec
->output_section
= prop_sec
;
10375 subseg_set (prop_sec
, 0);
10376 xt_seg_info
= seg_info (prop_sec
);
10377 xt_blocks
= &xt_seg_info
->tc_segment_info_data
.blocks
[sec_type
];
10379 /* Walk over all of the frchains here and add new sections. */
10380 add_xt_block_frags (sec
, xt_blocks
, property_function
,
10381 end_property_function
);
10385 /* Now we fill them out.... */
10387 for (seclist
= &stdoutput
->sections
;
10388 seclist
&& *seclist
;
10389 seclist
= &(*seclist
)->next
)
10391 segment_info_type
*seginfo
;
10392 xtensa_block_info
*block
;
10393 segT sec
= *seclist
;
10395 seginfo
= seg_info (sec
);
10396 block
= seginfo
->tc_segment_info_data
.blocks
[sec_type
];
10400 xtensa_block_info
*cur_block
;
10402 bfd_size_type rec_size
;
10404 for (cur_block
= block
; cur_block
; cur_block
= cur_block
->next
)
10407 rec_size
= num_recs
* 8;
10408 bfd_set_section_size (stdoutput
, sec
, rec_size
);
10415 subseg_set (sec
, 0);
10416 frag_data
= frag_more (rec_size
);
10418 for (i
= 0; i
< num_recs
; i
++)
10422 /* Write the fixup. */
10423 assert (cur_block
);
10424 fix
= fix_new (frag_now
, i
* 8, 4,
10425 section_symbol (cur_block
->sec
),
10427 FALSE
, BFD_RELOC_32
);
10428 fix
->fx_file
= "<internal>";
10431 /* Write the length. */
10432 md_number_to_chars (&frag_data
[4 + i
* 8],
10433 cur_block
->size
, 4);
10434 cur_block
= cur_block
->next
;
10436 frag_wane (frag_now
);
10438 frag_wane (frag_now
);
10446 xtensa_create_xproperty_segments (frag_flags_fn flag_fn
,
10447 const char *section_name_base
,
10448 xt_section_type sec_type
)
10452 /* Walk over all of the current segments.
10453 Walk over each fragment.
10454 For each fragment that has instructions,
10455 build an instruction record (append where possible). */
10457 for (seclist
= &stdoutput
->sections
;
10458 seclist
&& *seclist
;
10459 seclist
= &(*seclist
)->next
)
10461 segT sec
= *seclist
;
10464 flags
= bfd_get_section_flags (stdoutput
, sec
);
10465 if ((flags
& SEC_DEBUGGING
)
10466 || !(flags
& SEC_ALLOC
)
10467 || (flags
& SEC_MERGE
))
10470 if (section_has_xproperty (sec
, flag_fn
))
10472 segment_info_type
*xt_seg_info
;
10473 xtensa_block_info
**xt_blocks
;
10474 segT prop_sec
= xtensa_get_property_section (sec
, section_name_base
);
10476 prop_sec
->output_section
= prop_sec
;
10477 subseg_set (prop_sec
, 0);
10478 xt_seg_info
= seg_info (prop_sec
);
10479 xt_blocks
= &xt_seg_info
->tc_segment_info_data
.blocks
[sec_type
];
10481 /* Walk over all of the frchains here and add new sections. */
10482 add_xt_prop_frags (sec
, xt_blocks
, flag_fn
);
10486 /* Now we fill them out.... */
10488 for (seclist
= &stdoutput
->sections
;
10489 seclist
&& *seclist
;
10490 seclist
= &(*seclist
)->next
)
10492 segment_info_type
*seginfo
;
10493 xtensa_block_info
*block
;
10494 segT sec
= *seclist
;
10496 seginfo
= seg_info (sec
);
10497 block
= seginfo
->tc_segment_info_data
.blocks
[sec_type
];
10501 xtensa_block_info
*cur_block
;
10503 bfd_size_type rec_size
;
10505 for (cur_block
= block
; cur_block
; cur_block
= cur_block
->next
)
10508 rec_size
= num_recs
* (8 + 4);
10509 bfd_set_section_size (stdoutput
, sec
, rec_size
);
10510 /* elf_section_data (sec)->this_hdr.sh_entsize = 12; */
10517 subseg_set (sec
, 0);
10518 frag_data
= frag_more (rec_size
);
10520 for (i
= 0; i
< num_recs
; i
++)
10524 /* Write the fixup. */
10525 assert (cur_block
);
10526 fix
= fix_new (frag_now
, i
* 12, 4,
10527 section_symbol (cur_block
->sec
),
10529 FALSE
, BFD_RELOC_32
);
10530 fix
->fx_file
= "<internal>";
10533 /* Write the length. */
10534 md_number_to_chars (&frag_data
[4 + i
* 12],
10535 cur_block
->size
, 4);
10536 md_number_to_chars (&frag_data
[8 + i
* 12],
10537 frag_flags_to_number (&cur_block
->flags
),
10539 cur_block
= cur_block
->next
;
10541 frag_wane (frag_now
);
10543 frag_wane (frag_now
);
10551 section_has_property (segT sec
, frag_predicate property_function
)
10553 segment_info_type
*seginfo
= seg_info (sec
);
10556 if (seginfo
&& seginfo
->frchainP
)
10558 for (fragP
= seginfo
->frchainP
->frch_root
; fragP
; fragP
= fragP
->fr_next
)
10560 if (property_function (fragP
)
10561 && (fragP
->fr_type
!= rs_fill
|| fragP
->fr_fix
!= 0))
10570 section_has_xproperty (segT sec
, frag_flags_fn property_function
)
10572 segment_info_type
*seginfo
= seg_info (sec
);
10575 if (seginfo
&& seginfo
->frchainP
)
10577 for (fragP
= seginfo
->frchainP
->frch_root
; fragP
; fragP
= fragP
->fr_next
)
10579 frag_flags prop_flags
;
10580 property_function (fragP
, &prop_flags
);
10581 if (!xtensa_frag_flags_is_empty (&prop_flags
))
10589 /* Two types of block sections exist right now: literal and insns. */
10592 add_xt_block_frags (segT sec
,
10593 xtensa_block_info
**xt_block
,
10594 frag_predicate property_function
,
10595 frag_predicate end_property_function
)
10597 bfd_vma seg_offset
;
10600 /* Build it if needed. */
10601 while (*xt_block
!= NULL
)
10602 xt_block
= &(*xt_block
)->next
;
10603 /* We are either at NULL at the beginning or at the end. */
10605 /* Walk through the frags. */
10608 if (seg_info (sec
)->frchainP
)
10610 for (fragP
= seg_info (sec
)->frchainP
->frch_root
;
10612 fragP
= fragP
->fr_next
)
10614 if (property_function (fragP
)
10615 && (fragP
->fr_type
!= rs_fill
|| fragP
->fr_fix
!= 0))
10617 if (*xt_block
!= NULL
)
10619 if ((*xt_block
)->offset
+ (*xt_block
)->size
10620 == fragP
->fr_address
)
10621 (*xt_block
)->size
+= fragP
->fr_fix
;
10623 xt_block
= &((*xt_block
)->next
);
10625 if (*xt_block
== NULL
)
10627 xtensa_block_info
*new_block
= (xtensa_block_info
*)
10628 xmalloc (sizeof (xtensa_block_info
));
10629 new_block
->sec
= sec
;
10630 new_block
->offset
= fragP
->fr_address
;
10631 new_block
->size
= fragP
->fr_fix
;
10632 new_block
->next
= NULL
;
10633 xtensa_frag_flags_init (&new_block
->flags
);
10634 *xt_block
= new_block
;
10636 if (end_property_function
10637 && end_property_function (fragP
))
10639 xt_block
= &((*xt_block
)->next
);
10647 /* Break the encapsulation of add_xt_prop_frags here. */
10650 xtensa_frag_flags_is_empty (const frag_flags
*prop_flags
)
10652 if (prop_flags
->is_literal
10653 || prop_flags
->is_insn
10654 || prop_flags
->is_data
10655 || prop_flags
->is_unreachable
)
10662 xtensa_frag_flags_init (frag_flags
*prop_flags
)
10664 memset (prop_flags
, 0, sizeof (frag_flags
));
10669 get_frag_property_flags (const fragS
*fragP
, frag_flags
*prop_flags
)
10671 xtensa_frag_flags_init (prop_flags
);
10672 if (fragP
->tc_frag_data
.is_literal
)
10673 prop_flags
->is_literal
= TRUE
;
10674 if (fragP
->tc_frag_data
.is_specific_opcode
10675 || fragP
->tc_frag_data
.is_no_transform
)
10677 prop_flags
->is_no_transform
= TRUE
;
10678 if (xtensa_frag_flags_is_empty (prop_flags
))
10679 prop_flags
->is_data
= TRUE
;
10681 if (fragP
->tc_frag_data
.is_unreachable
)
10682 prop_flags
->is_unreachable
= TRUE
;
10683 else if (fragP
->tc_frag_data
.is_insn
)
10685 prop_flags
->is_insn
= TRUE
;
10686 if (fragP
->tc_frag_data
.is_loop_target
)
10687 prop_flags
->insn
.is_loop_target
= TRUE
;
10688 if (fragP
->tc_frag_data
.is_branch_target
)
10689 prop_flags
->insn
.is_branch_target
= TRUE
;
10690 if (fragP
->tc_frag_data
.is_no_density
)
10691 prop_flags
->insn
.is_no_density
= TRUE
;
10692 if (fragP
->tc_frag_data
.use_absolute_literals
)
10693 prop_flags
->insn
.is_abslit
= TRUE
;
10695 if (fragP
->tc_frag_data
.is_align
)
10697 prop_flags
->is_align
= TRUE
;
10698 prop_flags
->alignment
= fragP
->tc_frag_data
.alignment
;
10699 if (xtensa_frag_flags_is_empty (prop_flags
))
10700 prop_flags
->is_data
= TRUE
;
10706 frag_flags_to_number (const frag_flags
*prop_flags
)
10709 if (prop_flags
->is_literal
)
10710 num
|= XTENSA_PROP_LITERAL
;
10711 if (prop_flags
->is_insn
)
10712 num
|= XTENSA_PROP_INSN
;
10713 if (prop_flags
->is_data
)
10714 num
|= XTENSA_PROP_DATA
;
10715 if (prop_flags
->is_unreachable
)
10716 num
|= XTENSA_PROP_UNREACHABLE
;
10717 if (prop_flags
->insn
.is_loop_target
)
10718 num
|= XTENSA_PROP_INSN_LOOP_TARGET
;
10719 if (prop_flags
->insn
.is_branch_target
)
10721 num
|= XTENSA_PROP_INSN_BRANCH_TARGET
;
10722 num
= SET_XTENSA_PROP_BT_ALIGN (num
, prop_flags
->insn
.bt_align_priority
);
10725 if (prop_flags
->insn
.is_no_density
)
10726 num
|= XTENSA_PROP_INSN_NO_DENSITY
;
10727 if (prop_flags
->is_no_transform
)
10728 num
|= XTENSA_PROP_NO_TRANSFORM
;
10729 if (prop_flags
->insn
.is_no_reorder
)
10730 num
|= XTENSA_PROP_INSN_NO_REORDER
;
10731 if (prop_flags
->insn
.is_abslit
)
10732 num
|= XTENSA_PROP_INSN_ABSLIT
;
10734 if (prop_flags
->is_align
)
10736 num
|= XTENSA_PROP_ALIGN
;
10737 num
= SET_XTENSA_PROP_ALIGNMENT (num
, prop_flags
->alignment
);
10745 xtensa_frag_flags_combinable (const frag_flags
*prop_flags_1
,
10746 const frag_flags
*prop_flags_2
)
10748 /* Cannot combine with an end marker. */
10750 if (prop_flags_1
->is_literal
!= prop_flags_2
->is_literal
)
10752 if (prop_flags_1
->is_insn
!= prop_flags_2
->is_insn
)
10754 if (prop_flags_1
->is_data
!= prop_flags_2
->is_data
)
10757 if (prop_flags_1
->is_insn
)
10759 /* Properties of the beginning of the frag. */
10760 if (prop_flags_2
->insn
.is_loop_target
)
10762 if (prop_flags_2
->insn
.is_branch_target
)
10764 if (prop_flags_1
->insn
.is_no_density
!=
10765 prop_flags_2
->insn
.is_no_density
)
10767 if (prop_flags_1
->is_no_transform
!=
10768 prop_flags_2
->is_no_transform
)
10770 if (prop_flags_1
->insn
.is_no_reorder
!=
10771 prop_flags_2
->insn
.is_no_reorder
)
10773 if (prop_flags_1
->insn
.is_abslit
!=
10774 prop_flags_2
->insn
.is_abslit
)
10778 if (prop_flags_1
->is_align
)
10786 xt_block_aligned_size (const xtensa_block_info
*xt_block
)
10789 unsigned align_bits
;
10791 if (!xt_block
->flags
.is_align
)
10792 return xt_block
->size
;
10794 end_addr
= xt_block
->offset
+ xt_block
->size
;
10795 align_bits
= xt_block
->flags
.alignment
;
10796 end_addr
= ((end_addr
+ ((1 << align_bits
) -1)) >> align_bits
) << align_bits
;
10797 return end_addr
- xt_block
->offset
;
10802 xtensa_xt_block_combine (xtensa_block_info
*xt_block
,
10803 const xtensa_block_info
*xt_block_2
)
10805 if (xt_block
->sec
!= xt_block_2
->sec
)
10807 if (xt_block
->offset
+ xt_block_aligned_size (xt_block
)
10808 != xt_block_2
->offset
)
10811 if (xt_block_2
->size
== 0
10812 && (!xt_block_2
->flags
.is_unreachable
10813 || xt_block
->flags
.is_unreachable
))
10815 if (xt_block_2
->flags
.is_align
10816 && xt_block
->flags
.is_align
)
10818 /* Nothing needed. */
10819 if (xt_block
->flags
.alignment
>= xt_block_2
->flags
.alignment
)
10824 if (xt_block_2
->flags
.is_align
)
10826 /* Push alignment to previous entry. */
10827 xt_block
->flags
.is_align
= xt_block_2
->flags
.is_align
;
10828 xt_block
->flags
.alignment
= xt_block_2
->flags
.alignment
;
10833 if (!xtensa_frag_flags_combinable (&xt_block
->flags
,
10834 &xt_block_2
->flags
))
10837 xt_block
->size
+= xt_block_2
->size
;
10839 if (xt_block_2
->flags
.is_align
)
10841 xt_block
->flags
.is_align
= TRUE
;
10842 xt_block
->flags
.alignment
= xt_block_2
->flags
.alignment
;
10850 add_xt_prop_frags (segT sec
,
10851 xtensa_block_info
**xt_block
,
10852 frag_flags_fn property_function
)
10854 bfd_vma seg_offset
;
10857 /* Build it if needed. */
10858 while (*xt_block
!= NULL
)
10860 xt_block
= &(*xt_block
)->next
;
10862 /* We are either at NULL at the beginning or at the end. */
10864 /* Walk through the frags. */
10867 if (seg_info (sec
)->frchainP
)
10869 for (fragP
= seg_info (sec
)->frchainP
->frch_root
; fragP
;
10870 fragP
= fragP
->fr_next
)
10872 xtensa_block_info tmp_block
;
10873 tmp_block
.sec
= sec
;
10874 tmp_block
.offset
= fragP
->fr_address
;
10875 tmp_block
.size
= fragP
->fr_fix
;
10876 tmp_block
.next
= NULL
;
10877 property_function (fragP
, &tmp_block
.flags
);
10879 if (!xtensa_frag_flags_is_empty (&tmp_block
.flags
))
10880 /* && fragP->fr_fix != 0) */
10882 if ((*xt_block
) == NULL
10883 || !xtensa_xt_block_combine (*xt_block
, &tmp_block
))
10885 xtensa_block_info
*new_block
;
10886 if ((*xt_block
) != NULL
)
10887 xt_block
= &(*xt_block
)->next
;
10888 new_block
= (xtensa_block_info
*)
10889 xmalloc (sizeof (xtensa_block_info
));
10890 *new_block
= tmp_block
;
10891 *xt_block
= new_block
;
10899 /* op_placement_info_table */
10901 /* op_placement_info makes it easier to determine which
10902 ops can go in which slots. */
10905 init_op_placement_info_table (void)
10907 xtensa_isa isa
= xtensa_default_isa
;
10908 xtensa_insnbuf ibuf
= xtensa_insnbuf_alloc (isa
);
10909 xtensa_opcode opcode
;
10912 int num_opcodes
= xtensa_isa_num_opcodes (isa
);
10914 op_placement_table
= (op_placement_info_table
)
10915 xmalloc (sizeof (op_placement_info
) * num_opcodes
);
10916 assert (xtensa_isa_num_formats (isa
) < MAX_FORMATS
);
10918 for (opcode
= 0; opcode
< num_opcodes
; opcode
++)
10920 op_placement_info
*opi
= &op_placement_table
[opcode
];
10921 /* FIXME: Make tinsn allocation dynamic. */
10922 if (xtensa_opcode_num_operands (isa
, opcode
) >= MAX_INSN_ARGS
)
10923 as_fatal (_("too many operands in instruction"));
10924 opi
->narrowest
= XTENSA_UNDEFINED
;
10925 opi
->narrowest_size
= 0x7F;
10926 opi
->narrowest_slot
= 0;
10928 opi
->num_formats
= 0;
10930 for (fmt
= 0; fmt
< xtensa_isa_num_formats (isa
); fmt
++)
10932 opi
->slots
[fmt
] = 0;
10933 for (slot
= 0; slot
< xtensa_format_num_slots (isa
, fmt
); slot
++)
10935 if (xtensa_opcode_encode (isa
, fmt
, slot
, ibuf
, opcode
) == 0)
10937 int fmt_length
= xtensa_format_length (isa
, fmt
);
10939 set_bit (fmt
, opi
->formats
);
10940 set_bit (slot
, opi
->slots
[fmt
]);
10941 if (fmt_length
< opi
->narrowest_size
10942 || (fmt_length
== opi
->narrowest_size
10943 && (xtensa_format_num_slots (isa
, fmt
)
10944 < xtensa_format_num_slots (isa
,
10947 opi
->narrowest
= fmt
;
10948 opi
->narrowest_size
= fmt_length
;
10949 opi
->narrowest_slot
= slot
;
10954 opi
->num_formats
++;
10957 xtensa_insnbuf_free (isa
, ibuf
);
10962 opcode_fits_format_slot (xtensa_opcode opcode
, xtensa_format fmt
, int slot
)
10964 return bit_is_set (slot
, op_placement_table
[opcode
].slots
[fmt
]);
10968 /* If the opcode is available in a single slot format, return its size. */
10971 xg_get_single_size (xtensa_opcode opcode
)
10973 return op_placement_table
[opcode
].narrowest_size
;
10977 static xtensa_format
10978 xg_get_single_format (xtensa_opcode opcode
)
10980 return op_placement_table
[opcode
].narrowest
;
10985 xg_get_single_slot (xtensa_opcode opcode
)
10987 return op_placement_table
[opcode
].narrowest_slot
;
10991 /* Instruction Stack Functions (from "xtensa-istack.h"). */
10994 istack_init (IStack
*stack
)
10996 memset (stack
, 0, sizeof (IStack
));
11002 istack_empty (IStack
*stack
)
11004 return (stack
->ninsn
== 0);
11009 istack_full (IStack
*stack
)
11011 return (stack
->ninsn
== MAX_ISTACK
);
11015 /* Return a pointer to the top IStack entry.
11016 It is an error to call this if istack_empty () is TRUE. */
11019 istack_top (IStack
*stack
)
11021 int rec
= stack
->ninsn
- 1;
11022 assert (!istack_empty (stack
));
11023 return &stack
->insn
[rec
];
11027 /* Add a new TInsn to an IStack.
11028 It is an error to call this if istack_full () is TRUE. */
11031 istack_push (IStack
*stack
, TInsn
*insn
)
11033 int rec
= stack
->ninsn
;
11034 assert (!istack_full (stack
));
11035 stack
->insn
[rec
] = *insn
;
11040 /* Clear space for the next TInsn on the IStack and return a pointer
11041 to it. It is an error to call this if istack_full () is TRUE. */
11044 istack_push_space (IStack
*stack
)
11046 int rec
= stack
->ninsn
;
11048 assert (!istack_full (stack
));
11049 insn
= &stack
->insn
[rec
];
11056 /* Remove the last pushed instruction. It is an error to call this if
11057 istack_empty () returns TRUE. */
11060 istack_pop (IStack
*stack
)
11062 int rec
= stack
->ninsn
- 1;
11063 assert (!istack_empty (stack
));
11065 tinsn_init (&stack
->insn
[rec
]);
11069 /* TInsn functions. */
11072 tinsn_init (TInsn
*dst
)
11074 memset (dst
, 0, sizeof (TInsn
));
11078 /* Return TRUE if ANY of the operands in the insn are symbolic. */
11081 tinsn_has_symbolic_operands (const TInsn
*insn
)
11084 int n
= insn
->ntok
;
11086 assert (insn
->insn_type
== ITYPE_INSN
);
11088 for (i
= 0; i
< n
; ++i
)
11090 switch (insn
->tok
[i
].X_op
)
11104 tinsn_has_invalid_symbolic_operands (const TInsn
*insn
)
11106 xtensa_isa isa
= xtensa_default_isa
;
11108 int n
= insn
->ntok
;
11110 assert (insn
->insn_type
== ITYPE_INSN
);
11112 for (i
= 0; i
< n
; ++i
)
11114 switch (insn
->tok
[i
].X_op
)
11122 /* Errors for these types are caught later. */
11127 /* Symbolic immediates are only allowed on the last immediate
11128 operand. At this time, CONST16 is the only opcode where we
11129 support non-PC-relative relocations. */
11130 if (i
!= get_relaxable_immed (insn
->opcode
)
11131 || (xtensa_operand_is_PCrelative (isa
, insn
->opcode
, i
) != 1
11132 && insn
->opcode
!= xtensa_const16_opcode
))
11134 as_bad (_("invalid symbolic operand"));
11143 /* For assembly code with complex expressions (e.g. subtraction),
11144 we have to build them in the literal pool so that
11145 their results are calculated correctly after relaxation.
11146 The relaxation only handles expressions that
11147 boil down to SYMBOL + OFFSET. */
11150 tinsn_has_complex_operands (const TInsn
*insn
)
11153 int n
= insn
->ntok
;
11154 assert (insn
->insn_type
== ITYPE_INSN
);
11155 for (i
= 0; i
< n
; ++i
)
11157 switch (insn
->tok
[i
].X_op
)
11173 /* Encode a TInsn opcode and its constant operands into slotbuf.
11174 Return TRUE if there is a symbol in the immediate field. This
11175 function assumes that:
11176 1) The number of operands are correct.
11177 2) The insn_type is ITYPE_INSN.
11178 3) The opcode can be encoded in the specified format and slot.
11179 4) Operands are either O_constant or O_symbol, and all constants fit. */
11182 tinsn_to_slotbuf (xtensa_format fmt
,
11185 xtensa_insnbuf slotbuf
)
11187 xtensa_isa isa
= xtensa_default_isa
;
11188 xtensa_opcode opcode
= tinsn
->opcode
;
11189 bfd_boolean has_fixup
= FALSE
;
11190 int noperands
= xtensa_opcode_num_operands (isa
, opcode
);
11193 assert (tinsn
->insn_type
== ITYPE_INSN
);
11194 if (noperands
!= tinsn
->ntok
)
11195 as_fatal (_("operand number mismatch"));
11197 if (xtensa_opcode_encode (isa
, fmt
, slot
, slotbuf
, opcode
))
11199 as_bad (_("cannot encode opcode \"%s\" in the given format \"%s\""),
11200 xtensa_opcode_name (isa
, opcode
), xtensa_format_name (isa
, fmt
));
11204 for (i
= 0; i
< noperands
; i
++)
11206 expressionS
*expr
= &tinsn
->tok
[i
];
11212 switch (expr
->X_op
)
11215 if (xtensa_operand_is_visible (isa
, opcode
, i
) == 0)
11217 /* The register number has already been checked in
11218 expression_maybe_register, so we don't need to check here. */
11219 opnd_value
= expr
->X_add_number
;
11220 (void) xtensa_operand_encode (isa
, opcode
, i
, &opnd_value
);
11221 rc
= xtensa_operand_set_field (isa
, opcode
, i
, fmt
, slot
, slotbuf
,
11224 as_warn (_("xtensa-isa failure: %s"), xtensa_isa_error_msg (isa
));
11228 if (xtensa_operand_is_visible (isa
, opcode
, i
) == 0)
11230 as_where (&file_name
, &line
);
11231 /* It is a constant and we called this function
11232 then we have to try to fit it. */
11233 xtensa_insnbuf_set_operand (slotbuf
, fmt
, slot
, opcode
, i
,
11234 expr
->X_add_number
, file_name
, line
);
11247 /* Encode a single TInsn into an insnbuf. If the opcode can only be encoded
11248 into a multi-slot instruction, fill the other slots with NOPs.
11249 Return TRUE if there is a symbol in the immediate field. See also the
11250 assumptions listed for tinsn_to_slotbuf. */
11253 tinsn_to_insnbuf (TInsn
*tinsn
, xtensa_insnbuf insnbuf
)
11255 static xtensa_insnbuf slotbuf
= 0;
11256 static vliw_insn vinsn
;
11257 xtensa_isa isa
= xtensa_default_isa
;
11258 bfd_boolean has_fixup
= FALSE
;
11263 slotbuf
= xtensa_insnbuf_alloc (isa
);
11264 xg_init_vinsn (&vinsn
);
11267 xg_clear_vinsn (&vinsn
);
11269 bundle_tinsn (tinsn
, &vinsn
);
11271 xtensa_format_encode (isa
, vinsn
.format
, insnbuf
);
11273 for (i
= 0; i
< vinsn
.num_slots
; i
++)
11275 /* Only one slot may have a fix-up because the rest contains NOPs. */
11277 tinsn_to_slotbuf (vinsn
.format
, i
, &vinsn
.slots
[i
], vinsn
.slotbuf
[i
]);
11278 xtensa_format_set_slot (isa
, vinsn
.format
, i
, insnbuf
, vinsn
.slotbuf
[i
]);
11285 /* Check the instruction arguments. Return TRUE on failure. */
11288 tinsn_check_arguments (const TInsn
*insn
)
11290 xtensa_isa isa
= xtensa_default_isa
;
11291 xtensa_opcode opcode
= insn
->opcode
;
11293 if (opcode
== XTENSA_UNDEFINED
)
11295 as_bad (_("invalid opcode"));
11299 if (xtensa_opcode_num_operands (isa
, opcode
) > insn
->ntok
)
11301 as_bad (_("too few operands"));
11305 if (xtensa_opcode_num_operands (isa
, opcode
) < insn
->ntok
)
11307 as_bad (_("too many operands"));
11314 /* Load an instruction from its encoded form. */
11317 tinsn_from_chars (TInsn
*tinsn
, char *f
, int slot
)
11321 xg_init_vinsn (&vinsn
);
11322 vinsn_from_chars (&vinsn
, f
);
11324 *tinsn
= vinsn
.slots
[slot
];
11325 xg_free_vinsn (&vinsn
);
11330 tinsn_from_insnbuf (TInsn
*tinsn
,
11331 xtensa_insnbuf slotbuf
,
11336 xtensa_isa isa
= xtensa_default_isa
;
11338 /* Find the immed. */
11339 tinsn_init (tinsn
);
11340 tinsn
->insn_type
= ITYPE_INSN
;
11341 tinsn
->is_specific_opcode
= FALSE
; /* must not be specific */
11342 tinsn
->opcode
= xtensa_opcode_decode (isa
, fmt
, slot
, slotbuf
);
11343 tinsn
->ntok
= xtensa_opcode_num_operands (isa
, tinsn
->opcode
);
11344 for (i
= 0; i
< tinsn
->ntok
; i
++)
11346 set_expr_const (&tinsn
->tok
[i
],
11347 xtensa_insnbuf_get_operand (slotbuf
, fmt
, slot
,
11348 tinsn
->opcode
, i
));
11353 /* Read the value of the relaxable immed from the fr_symbol and fr_offset. */
11356 tinsn_immed_from_frag (TInsn
*tinsn
, fragS
*fragP
, int slot
)
11358 xtensa_opcode opcode
= tinsn
->opcode
;
11361 if (fragP
->tc_frag_data
.slot_symbols
[slot
])
11363 opnum
= get_relaxable_immed (opcode
);
11364 assert (opnum
>= 0);
11365 set_expr_symbol_offset (&tinsn
->tok
[opnum
],
11366 fragP
->tc_frag_data
.slot_symbols
[slot
],
11367 fragP
->tc_frag_data
.slot_offsets
[slot
]);
11373 get_num_stack_text_bytes (IStack
*istack
)
11376 int text_bytes
= 0;
11378 for (i
= 0; i
< istack
->ninsn
; i
++)
11380 TInsn
*tinsn
= &istack
->insn
[i
];
11381 if (tinsn
->insn_type
== ITYPE_INSN
)
11382 text_bytes
+= xg_get_single_size (tinsn
->opcode
);
11389 get_num_stack_literal_bytes (IStack
*istack
)
11394 for (i
= 0; i
< istack
->ninsn
; i
++)
11396 TInsn
*tinsn
= &istack
->insn
[i
];
11397 if (tinsn
->insn_type
== ITYPE_LITERAL
&& tinsn
->ntok
== 1)
11404 /* vliw_insn functions. */
11407 xg_init_vinsn (vliw_insn
*v
)
11410 xtensa_isa isa
= xtensa_default_isa
;
11412 xg_clear_vinsn (v
);
11414 v
->insnbuf
= xtensa_insnbuf_alloc (isa
);
11415 if (v
->insnbuf
== NULL
)
11416 as_fatal (_("out of memory"));
11418 for (i
= 0; i
< MAX_SLOTS
; i
++)
11420 v
->slotbuf
[i
] = xtensa_insnbuf_alloc (isa
);
11421 if (v
->slotbuf
[i
] == NULL
)
11422 as_fatal (_("out of memory"));
11428 xg_clear_vinsn (vliw_insn
*v
)
11432 memset (v
, 0, offsetof (vliw_insn
, insnbuf
));
11434 v
->format
= XTENSA_UNDEFINED
;
11436 v
->inside_bundle
= FALSE
;
11438 if (xt_saved_debug_type
!= DEBUG_NONE
)
11439 debug_type
= xt_saved_debug_type
;
11441 for (i
= 0; i
< MAX_SLOTS
; i
++)
11442 v
->slots
[i
].opcode
= XTENSA_UNDEFINED
;
11447 vinsn_has_specific_opcodes (vliw_insn
*v
)
11451 for (i
= 0; i
< v
->num_slots
; i
++)
11453 if (v
->slots
[i
].is_specific_opcode
)
11461 xg_free_vinsn (vliw_insn
*v
)
11464 xtensa_insnbuf_free (xtensa_default_isa
, v
->insnbuf
);
11465 for (i
= 0; i
< MAX_SLOTS
; i
++)
11466 xtensa_insnbuf_free (xtensa_default_isa
, v
->slotbuf
[i
]);
11470 /* Encode a vliw_insn into an insnbuf. Return TRUE if there are any symbolic
11471 operands. See also the assumptions listed for tinsn_to_slotbuf. */
11474 vinsn_to_insnbuf (vliw_insn
*vinsn
,
11477 bfd_boolean record_fixup
)
11479 xtensa_isa isa
= xtensa_default_isa
;
11480 xtensa_format fmt
= vinsn
->format
;
11481 xtensa_insnbuf insnbuf
= vinsn
->insnbuf
;
11483 bfd_boolean has_fixup
= FALSE
;
11485 xtensa_format_encode (isa
, fmt
, insnbuf
);
11487 for (slot
= 0; slot
< vinsn
->num_slots
; slot
++)
11489 TInsn
*tinsn
= &vinsn
->slots
[slot
];
11490 bfd_boolean tinsn_has_fixup
=
11491 tinsn_to_slotbuf (vinsn
->format
, slot
, tinsn
,
11492 vinsn
->slotbuf
[slot
]);
11494 xtensa_format_set_slot (isa
, fmt
, slot
,
11495 insnbuf
, vinsn
->slotbuf
[slot
]);
11496 if (tinsn_has_fixup
)
11499 xtensa_opcode opcode
= tinsn
->opcode
;
11500 int noperands
= xtensa_opcode_num_operands (isa
, opcode
);
11503 for (i
= 0; i
< noperands
; i
++)
11505 expressionS
* expr
= &tinsn
->tok
[i
];
11506 switch (expr
->X_op
)
11511 if (get_relaxable_immed (opcode
) == i
)
11513 /* Add a fix record for the instruction, except if this
11514 function is being called prior to relaxation, i.e.,
11515 if record_fixup is false, and the instruction might
11516 be relaxed later. */
11518 || tinsn
->is_specific_opcode
11519 || !xg_is_relaxable_insn (tinsn
, 0))
11521 xg_add_opcode_fix (tinsn
, i
, fmt
, slot
, expr
, fragP
,
11522 frag_offset
- fragP
->fr_literal
);
11526 if (expr
->X_op
!= O_symbol
)
11527 as_bad (_("invalid operand"));
11528 tinsn
->symbol
= expr
->X_add_symbol
;
11529 tinsn
->offset
= expr
->X_add_number
;
11533 as_bad (_("symbolic operand not allowed"));
11541 as_bad (_("expression too complex"));
11553 vinsn_from_chars (vliw_insn
*vinsn
, char *f
)
11555 static xtensa_insnbuf insnbuf
= NULL
;
11556 static xtensa_insnbuf slotbuf
= NULL
;
11559 xtensa_isa isa
= xtensa_default_isa
;
11563 insnbuf
= xtensa_insnbuf_alloc (isa
);
11564 slotbuf
= xtensa_insnbuf_alloc (isa
);
11567 xtensa_insnbuf_from_chars (isa
, insnbuf
, (unsigned char *) f
, 0);
11568 fmt
= xtensa_format_decode (isa
, insnbuf
);
11569 if (fmt
== XTENSA_UNDEFINED
)
11570 as_fatal (_("cannot decode instruction format"));
11571 vinsn
->format
= fmt
;
11572 vinsn
->num_slots
= xtensa_format_num_slots (isa
, fmt
);
11574 for (i
= 0; i
< vinsn
->num_slots
; i
++)
11576 TInsn
*tinsn
= &vinsn
->slots
[i
];
11577 xtensa_format_get_slot (isa
, fmt
, i
, insnbuf
, slotbuf
);
11578 tinsn_from_insnbuf (tinsn
, slotbuf
, fmt
, i
);
11583 /* Expression utilities. */
11585 /* Return TRUE if the expression is an integer constant. */
11588 expr_is_const (const expressionS
*s
)
11590 return (s
->X_op
== O_constant
);
11594 /* Get the expression constant.
11595 Calling this is illegal if expr_is_const () returns TRUE. */
11598 get_expr_const (const expressionS
*s
)
11600 assert (expr_is_const (s
));
11601 return s
->X_add_number
;
11605 /* Set the expression to a constant value. */
11608 set_expr_const (expressionS
*s
, offsetT val
)
11610 s
->X_op
= O_constant
;
11611 s
->X_add_number
= val
;
11612 s
->X_add_symbol
= NULL
;
11613 s
->X_op_symbol
= NULL
;
11618 expr_is_register (const expressionS
*s
)
11620 return (s
->X_op
== O_register
);
11624 /* Get the expression constant.
11625 Calling this is illegal if expr_is_const () returns TRUE. */
11628 get_expr_register (const expressionS
*s
)
11630 assert (expr_is_register (s
));
11631 return s
->X_add_number
;
11635 /* Set the expression to a symbol + constant offset. */
11638 set_expr_symbol_offset (expressionS
*s
, symbolS
*sym
, offsetT offset
)
11640 s
->X_op
= O_symbol
;
11641 s
->X_add_symbol
= sym
;
11642 s
->X_op_symbol
= NULL
; /* unused */
11643 s
->X_add_number
= offset
;
11647 /* Return TRUE if the two expressions are equal. */
11650 expr_is_equal (expressionS
*s1
, expressionS
*s2
)
11652 if (s1
->X_op
!= s2
->X_op
)
11654 if (s1
->X_add_symbol
!= s2
->X_add_symbol
)
11656 if (s1
->X_op_symbol
!= s2
->X_op_symbol
)
11658 if (s1
->X_add_number
!= s2
->X_add_number
)
11665 copy_expr (expressionS
*dst
, const expressionS
*src
)
11667 memcpy (dst
, src
, sizeof (expressionS
));
11671 /* Support for the "--rename-section" option. */
11673 struct rename_section_struct
11677 struct rename_section_struct
*next
;
11680 static struct rename_section_struct
*section_rename
;
11683 /* Parse the string "oldname=new_name(:oldname2=new_name2)*" and add
11684 entries to the section_rename list. Note: Specifying multiple
11685 renamings separated by colons is not documented and is retained only
11686 for backward compatibility. */
11689 build_section_rename (const char *arg
)
11691 struct rename_section_struct
*r
;
11692 char *this_arg
= NULL
;
11693 char *next_arg
= NULL
;
11695 for (this_arg
= xstrdup (arg
); this_arg
!= NULL
; this_arg
= next_arg
)
11697 char *old_name
, *new_name
;
11701 next_arg
= strchr (this_arg
, ':');
11709 old_name
= this_arg
;
11710 new_name
= strchr (this_arg
, '=');
11712 if (*old_name
== '\0')
11714 as_warn (_("ignoring extra '-rename-section' delimiter ':'"));
11717 if (!new_name
|| new_name
[1] == '\0')
11719 as_warn (_("ignoring invalid '-rename-section' specification: '%s'"),
11726 /* Check for invalid section renaming. */
11727 for (r
= section_rename
; r
!= NULL
; r
= r
->next
)
11729 if (strcmp (r
->old_name
, old_name
) == 0)
11730 as_bad (_("section %s renamed multiple times"), old_name
);
11731 if (strcmp (r
->new_name
, new_name
) == 0)
11732 as_bad (_("multiple sections remapped to output section %s"),
11737 r
= (struct rename_section_struct
*)
11738 xmalloc (sizeof (struct rename_section_struct
));
11739 r
->old_name
= xstrdup (old_name
);
11740 r
->new_name
= xstrdup (new_name
);
11741 r
->next
= section_rename
;
11742 section_rename
= r
;
11748 xtensa_section_rename (char *name
)
11750 struct rename_section_struct
*r
= section_rename
;
11752 for (r
= section_rename
; r
!= NULL
; r
= r
->next
)
11754 if (strcmp (r
->old_name
, name
) == 0)
11755 return r
->new_name
;