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