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