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