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