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