* config/tc-xtensa.c (xtensa_move_labels): Remove loops_ok argument.
[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{
43cd72b9
BW
5096 if (cur_vinsn.inside_bundle)
5097 as_bad (_("missing closing brace"));
5098
e0001a05
NC
5099 /* If there is a non-zero instruction fragment, close it. */
5100 if (frag_now_fix () != 0 && frag_now->tc_frag_data.is_insn)
5101 {
5102 frag_wane (frag_now);
5103 frag_new (0);
43cd72b9 5104 xtensa_set_frag_assembly_state (frag_now);
e0001a05
NC
5105 }
5106 frag_now->tc_frag_data.is_insn = FALSE;
82e7541d
BW
5107
5108 xtensa_clear_insn_labels ();
e0001a05
NC
5109}
5110
5111
43cd72b9
BW
5112/* We had an error while parsing an instruction. The string might look
5113 like this: "insn arg1, arg2 }". If so, we need to see the closing
5114 brace and reset some fields. Otherwise, the vinsn never gets closed
5115 and the num_slots field will grow past the end of the array of slots,
5116 and bad things happen. */
5117
5118static void
7fa3d080 5119error_reset_cur_vinsn (void)
43cd72b9
BW
5120{
5121 if (cur_vinsn.inside_bundle)
5122 {
5123 if (*input_line_pointer == '}'
5124 || *(input_line_pointer - 1) == '}'
5125 || *(input_line_pointer - 2) == '}')
5126 xg_clear_vinsn (&cur_vinsn);
5127 }
5128}
5129
5130
e0001a05 5131void
7fa3d080 5132md_assemble (char *str)
e0001a05
NC
5133{
5134 xtensa_isa isa = xtensa_default_isa;
7c430684 5135 char *opname, *file_name;
e0001a05
NC
5136 unsigned opnamelen;
5137 bfd_boolean has_underbar = FALSE;
43cd72b9 5138 char *arg_strings[MAX_INSN_ARGS];
e0001a05 5139 int num_args;
e0001a05 5140 TInsn orig_insn; /* Original instruction from the input. */
e0001a05 5141
e0001a05
NC
5142 tinsn_init (&orig_insn);
5143
5144 /* Split off the opcode. */
5145 opnamelen = strspn (str, "abcdefghijklmnopqrstuvwxyz_/0123456789.");
5146 opname = xmalloc (opnamelen + 1);
5147 memcpy (opname, str, opnamelen);
5148 opname[opnamelen] = '\0';
5149
5150 num_args = tokenize_arguments (arg_strings, str + opnamelen);
5151 if (num_args == -1)
5152 {
5153 as_bad (_("syntax error"));
5154 return;
5155 }
5156
5157 if (xg_translate_idioms (&opname, &num_args, arg_strings))
5158 return;
5159
5160 /* Check for an underbar prefix. */
5161 if (*opname == '_')
5162 {
5163 has_underbar = TRUE;
5164 opname += 1;
5165 }
5166
5167 orig_insn.insn_type = ITYPE_INSN;
5168 orig_insn.ntok = 0;
43cd72b9 5169 orig_insn.is_specific_opcode = (has_underbar || !use_transform ());
e0001a05
NC
5170
5171 orig_insn.opcode = xtensa_opcode_lookup (isa, opname);
5172 if (orig_insn.opcode == XTENSA_UNDEFINED)
5173 {
43cd72b9
BW
5174 xtensa_format fmt = xtensa_format_lookup (isa, opname);
5175 if (fmt == XTENSA_UNDEFINED)
5176 {
5177 as_bad (_("unknown opcode or format name '%s'"), opname);
5178 error_reset_cur_vinsn ();
5179 return;
5180 }
5181 if (!cur_vinsn.inside_bundle)
5182 {
5183 as_bad (_("format names only valid inside bundles"));
5184 error_reset_cur_vinsn ();
5185 return;
5186 }
5187 if (cur_vinsn.format != XTENSA_UNDEFINED)
5188 as_warn (_("multiple formats specified for one bundle; using '%s'"),
5189 opname);
5190 cur_vinsn.format = fmt;
5191 free (has_underbar ? opname - 1 : opname);
5192 error_reset_cur_vinsn ();
e0001a05
NC
5193 return;
5194 }
5195
e0001a05
NC
5196 /* Parse the arguments. */
5197 if (parse_arguments (&orig_insn, num_args, arg_strings))
5198 {
5199 as_bad (_("syntax error"));
43cd72b9 5200 error_reset_cur_vinsn ();
e0001a05
NC
5201 return;
5202 }
5203
5204 /* Free the opcode and argument strings, now that they've been parsed. */
5205 free (has_underbar ? opname - 1 : opname);
5206 opname = 0;
5207 while (num_args-- > 0)
5208 free (arg_strings[num_args]);
5209
43cd72b9
BW
5210 /* Get expressions for invisible operands. */
5211 if (get_invisible_operands (&orig_insn))
5212 {
5213 error_reset_cur_vinsn ();
5214 return;
5215 }
5216
e0001a05
NC
5217 /* Check for the right number and type of arguments. */
5218 if (tinsn_check_arguments (&orig_insn))
e0001a05 5219 {
43cd72b9
BW
5220 error_reset_cur_vinsn ();
5221 return;
e0001a05
NC
5222 }
5223
7c430684
BW
5224 /* A FLIX bundle may be spread across multiple input lines. We want to
5225 report the first such line in the debug information. Record the line
5226 number for each TInsn (assume the file name doesn't change), so the
5227 first line can be found later. */
5228 as_where (&file_name, &orig_insn.linenum);
c138bc38 5229
43cd72b9
BW
5230 xg_add_branch_and_loop_targets (&orig_insn);
5231
431ad2d0
BW
5232 /* Check that immediate value for ENTRY is >= 16. */
5233 if (orig_insn.opcode == xtensa_entry_opcode && orig_insn.ntok >= 3)
e0001a05 5234 {
431ad2d0
BW
5235 expressionS *exp = &orig_insn.tok[2];
5236 if (exp->X_op == O_constant && exp->X_add_number < 16)
5237 as_warn (_("entry instruction with stack decrement < 16"));
e0001a05
NC
5238 }
5239
e0001a05 5240 /* Finish it off:
43cd72b9
BW
5241 assemble_tokens (opcode, tok, ntok);
5242 expand the tokens from the orig_insn into the
5243 stack of instructions that will not expand
e0001a05 5244 unless required at relaxation time. */
e0001a05 5245
43cd72b9
BW
5246 if (!cur_vinsn.inside_bundle)
5247 emit_single_op (&orig_insn);
5248 else /* We are inside a bundle. */
e0001a05 5249 {
43cd72b9
BW
5250 cur_vinsn.slots[cur_vinsn.num_slots] = orig_insn;
5251 cur_vinsn.num_slots++;
5252 if (*input_line_pointer == '}'
5253 || *(input_line_pointer - 1) == '}'
5254 || *(input_line_pointer - 2) == '}')
5255 finish_vinsn (&cur_vinsn);
e0001a05
NC
5256 }
5257
43cd72b9
BW
5258 /* We've just emitted a new instruction so clear the list of labels. */
5259 xtensa_clear_insn_labels ();
e0001a05
NC
5260}
5261
5262
43cd72b9 5263/* HANDLE_ALIGN hook */
e0001a05 5264
43cd72b9
BW
5265/* For a .align directive, we mark the previous block with the alignment
5266 information. This will be placed in the object file in the
5267 property section corresponding to this section. */
e0001a05 5268
43cd72b9 5269void
7fa3d080 5270xtensa_handle_align (fragS *fragP)
43cd72b9
BW
5271{
5272 if (linkrelax
b08b5071 5273 && ! fragP->tc_frag_data.is_literal
43cd72b9
BW
5274 && (fragP->fr_type == rs_align
5275 || fragP->fr_type == rs_align_code)
5276 && fragP->fr_address + fragP->fr_fix > 0
5277 && fragP->fr_offset > 0
5278 && now_seg != bss_section)
e0001a05 5279 {
43cd72b9
BW
5280 fragP->tc_frag_data.is_align = TRUE;
5281 fragP->tc_frag_data.alignment = fragP->fr_offset;
e0001a05
NC
5282 }
5283
43cd72b9 5284 if (fragP->fr_type == rs_align_test)
e0001a05 5285 {
43cd72b9
BW
5286 int count;
5287 count = fragP->fr_next->fr_address - fragP->fr_address - fragP->fr_fix;
5288 if (count != 0)
c138bc38 5289 as_bad_where (fragP->fr_file, fragP->fr_line,
43cd72b9 5290 _("unaligned entry instruction"));
e0001a05 5291 }
e0001a05 5292}
43cd72b9 5293
e0001a05
NC
5294
5295/* TC_FRAG_INIT hook */
5296
5297void
7fa3d080 5298xtensa_frag_init (fragS *frag)
e0001a05 5299{
43cd72b9 5300 xtensa_set_frag_assembly_state (frag);
e0001a05
NC
5301}
5302
5303
5304symbolS *
7fa3d080 5305md_undefined_symbol (char *name ATTRIBUTE_UNUSED)
e0001a05
NC
5306{
5307 return NULL;
5308}
5309
5310
5311/* Round up a section size to the appropriate boundary. */
5312
5313valueT
7fa3d080 5314md_section_align (segT segment ATTRIBUTE_UNUSED, valueT size)
e0001a05
NC
5315{
5316 return size; /* Byte alignment is fine. */
5317}
5318
5319
5320long
7fa3d080 5321md_pcrel_from (fixS *fixP)
e0001a05
NC
5322{
5323 char *insn_p;
5324 static xtensa_insnbuf insnbuf = NULL;
43cd72b9 5325 static xtensa_insnbuf slotbuf = NULL;
e0001a05 5326 int opnum;
43cd72b9 5327 uint32 opnd_value;
e0001a05 5328 xtensa_opcode opcode;
43cd72b9
BW
5329 xtensa_format fmt;
5330 int slot;
e0001a05
NC
5331 xtensa_isa isa = xtensa_default_isa;
5332 valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
43cd72b9 5333 bfd_boolean alt_reloc;
e0001a05 5334
e0001a05 5335 if (fixP->fx_r_type == BFD_RELOC_XTENSA_ASM_EXPAND)
30f725a1 5336 return 0;
e0001a05
NC
5337
5338 if (!insnbuf)
43cd72b9
BW
5339 {
5340 insnbuf = xtensa_insnbuf_alloc (isa);
5341 slotbuf = xtensa_insnbuf_alloc (isa);
5342 }
e0001a05
NC
5343
5344 insn_p = &fixP->fx_frag->fr_literal[fixP->fx_where];
d77b99c9 5345 xtensa_insnbuf_from_chars (isa, insnbuf, (unsigned char *) insn_p, 0);
43cd72b9
BW
5346 fmt = xtensa_format_decode (isa, insnbuf);
5347
5348 if (fmt == XTENSA_UNDEFINED)
5349 as_fatal (_("bad instruction format"));
5350
5351 if (decode_reloc (fixP->fx_r_type, &slot, &alt_reloc) != 0)
5352 as_fatal (_("invalid relocation"));
5353
5354 xtensa_format_get_slot (isa, fmt, slot, insnbuf, slotbuf);
5355 opcode = xtensa_opcode_decode (isa, fmt, slot, slotbuf);
5356
30f725a1
BW
5357 /* Check for "alternate" relocations (operand not specified). None
5358 of the current uses for these are really PC-relative. */
43cd72b9
BW
5359 if (alt_reloc || opcode == xtensa_const16_opcode)
5360 {
5361 if (opcode != xtensa_l32r_opcode
5362 && opcode != xtensa_const16_opcode)
5363 as_fatal (_("invalid relocation for '%s' instruction"),
5364 xtensa_opcode_name (isa, opcode));
30f725a1 5365 return 0;
e0001a05
NC
5366 }
5367
43cd72b9
BW
5368 opnum = get_relaxable_immed (opcode);
5369 opnd_value = 0;
5370 if (xtensa_operand_is_PCrelative (isa, opcode, opnum) != 1
5371 || xtensa_operand_do_reloc (isa, opcode, opnum, &opnd_value, addr))
e0001a05
NC
5372 {
5373 as_bad_where (fixP->fx_file,
5374 fixP->fx_line,
5375 _("invalid relocation for operand %d of '%s'"),
5376 opnum, xtensa_opcode_name (isa, opcode));
30f725a1 5377 return 0;
e0001a05 5378 }
43cd72b9
BW
5379 return 0 - opnd_value;
5380}
5381
5382
5383/* TC_FORCE_RELOCATION hook */
5384
5385int
7fa3d080 5386xtensa_force_relocation (fixS *fix)
43cd72b9
BW
5387{
5388 switch (fix->fx_r_type)
30f725a1
BW
5389 {
5390 case BFD_RELOC_XTENSA_ASM_EXPAND:
43cd72b9
BW
5391 case BFD_RELOC_XTENSA_SLOT0_ALT:
5392 case BFD_RELOC_XTENSA_SLOT1_ALT:
5393 case BFD_RELOC_XTENSA_SLOT2_ALT:
5394 case BFD_RELOC_XTENSA_SLOT3_ALT:
5395 case BFD_RELOC_XTENSA_SLOT4_ALT:
5396 case BFD_RELOC_XTENSA_SLOT5_ALT:
5397 case BFD_RELOC_XTENSA_SLOT6_ALT:
5398 case BFD_RELOC_XTENSA_SLOT7_ALT:
5399 case BFD_RELOC_XTENSA_SLOT8_ALT:
5400 case BFD_RELOC_XTENSA_SLOT9_ALT:
5401 case BFD_RELOC_XTENSA_SLOT10_ALT:
5402 case BFD_RELOC_XTENSA_SLOT11_ALT:
5403 case BFD_RELOC_XTENSA_SLOT12_ALT:
5404 case BFD_RELOC_XTENSA_SLOT13_ALT:
5405 case BFD_RELOC_XTENSA_SLOT14_ALT:
43cd72b9
BW
5406 return 1;
5407 default:
5408 break;
e0001a05
NC
5409 }
5410
43cd72b9
BW
5411 if (linkrelax && fix->fx_addsy
5412 && relaxable_section (S_GET_SEGMENT (fix->fx_addsy)))
5413 return 1;
5414
5415 return generic_force_reloc (fix);
5416}
5417
5418
30f725a1
BW
5419/* TC_VALIDATE_FIX_SUB hook */
5420
5421int
5422xtensa_validate_fix_sub (fixS *fix)
5423{
5424 segT add_symbol_segment, sub_symbol_segment;
5425
5426 /* The difference of two symbols should be resolved by the assembler when
5427 linkrelax is not set. If the linker may relax the section containing
5428 the symbols, then an Xtensa DIFF relocation must be generated so that
5429 the linker knows to adjust the difference value. */
5430 if (!linkrelax || fix->fx_addsy == NULL)
5431 return 0;
5432
5433 /* Make sure both symbols are in the same segment, and that segment is
5434 "normal" and relaxable. If the segment is not "normal", then the
5435 fix is not valid. If the segment is not "relaxable", then the fix
5436 should have been handled earlier. */
5437 add_symbol_segment = S_GET_SEGMENT (fix->fx_addsy);
5438 if (! SEG_NORMAL (add_symbol_segment) ||
5439 ! relaxable_section (add_symbol_segment))
5440 return 0;
5441 sub_symbol_segment = S_GET_SEGMENT (fix->fx_subsy);
5442 return (sub_symbol_segment == add_symbol_segment);
5443}
5444
5445
43cd72b9
BW
5446/* NO_PSEUDO_DOT hook */
5447
5448/* This function has nothing to do with pseudo dots, but this is the
5449 nearest macro to where the check needs to take place. FIXME: This
5450 seems wrong. */
5451
5452bfd_boolean
7fa3d080 5453xtensa_check_inside_bundle (void)
43cd72b9
BW
5454{
5455 if (cur_vinsn.inside_bundle && input_line_pointer[-1] == '.')
5456 as_bad (_("directives are not valid inside bundles"));
5457
5458 /* This function must always return FALSE because it is called via a
5459 macro that has nothing to do with bundling. */
5460 return FALSE;
e0001a05
NC
5461}
5462
5463
43cd72b9 5464/* md_elf_section_change_hook */
e0001a05
NC
5465
5466void
7fa3d080 5467xtensa_elf_section_change_hook (void)
e0001a05 5468{
43cd72b9
BW
5469 /* Set up the assembly state. */
5470 if (!frag_now->tc_frag_data.is_assembly_state_set)
5471 xtensa_set_frag_assembly_state (frag_now);
e0001a05
NC
5472}
5473
5474
5475/* tc_fix_adjustable hook */
5476
5477bfd_boolean
7fa3d080 5478xtensa_fix_adjustable (fixS *fixP)
e0001a05 5479{
43cd72b9
BW
5480 /* An offset is not allowed in combination with the difference of two
5481 symbols, but that cannot be easily detected after a local symbol
5482 has been adjusted to a (section+offset) form. Return 0 so that such
5483 an fix will not be adjusted. */
5484 if (fixP->fx_subsy && fixP->fx_addsy && fixP->fx_offset
5485 && relaxable_section (S_GET_SEGMENT (fixP->fx_subsy)))
5486 return 0;
5487
e0001a05
NC
5488 /* We need the symbol name for the VTABLE entries. */
5489 if (fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
5490 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
5491 return 0;
5492
5493 return 1;
5494}
5495
5496
5497void
55cf6793 5498md_apply_fix (fixS *fixP, valueT *valP, segT seg)
e0001a05 5499{
30f725a1 5500 char *const fixpos = fixP->fx_frag->fr_literal + fixP->fx_where;
d47d412e 5501 valueT val = 0;
30f725a1 5502
e7da6241
BW
5503 /* Subtracted symbols are only allowed for a few relocation types, and
5504 unless linkrelax is enabled, they should not make it to this point. */
5505 if (fixP->fx_subsy && !(linkrelax && (fixP->fx_r_type == BFD_RELOC_32
5506 || fixP->fx_r_type == BFD_RELOC_16
5507 || fixP->fx_r_type == BFD_RELOC_8)))
5508 as_bad_where (fixP->fx_file, fixP->fx_line, _("expression too complex"));
5509
30f725a1 5510 switch (fixP->fx_r_type)
e0001a05 5511 {
30f725a1
BW
5512 case BFD_RELOC_32:
5513 case BFD_RELOC_16:
5514 case BFD_RELOC_8:
e7da6241 5515 if (fixP->fx_subsy)
30f725a1
BW
5516 {
5517 switch (fixP->fx_r_type)
5518 {
5519 case BFD_RELOC_8:
5520 fixP->fx_r_type = BFD_RELOC_XTENSA_DIFF8;
5521 break;
5522 case BFD_RELOC_16:
5523 fixP->fx_r_type = BFD_RELOC_XTENSA_DIFF16;
5524 break;
5525 case BFD_RELOC_32:
5526 fixP->fx_r_type = BFD_RELOC_XTENSA_DIFF32;
5527 break;
5528 default:
5529 break;
5530 }
e0001a05 5531
30f725a1
BW
5532 /* An offset is only allowed when it results from adjusting a
5533 local symbol into a section-relative offset. If the offset
5534 came from the original expression, tc_fix_adjustable will have
5535 prevented the fix from being converted to a section-relative
5536 form so that we can flag the error here. */
5537 if (fixP->fx_offset != 0 && !symbol_section_p (fixP->fx_addsy))
5538 as_bad_where (fixP->fx_file, fixP->fx_line,
5539 _("cannot represent subtraction with an offset"));
5540
5541 val = (S_GET_VALUE (fixP->fx_addsy) + fixP->fx_offset
5542 - S_GET_VALUE (fixP->fx_subsy));
5543
5544 /* The difference value gets written out, and the DIFF reloc
5545 identifies the address of the subtracted symbol (i.e., the one
5546 with the lowest address). */
5547 *valP = val;
5548 fixP->fx_offset -= val;
5549 fixP->fx_subsy = NULL;
5550 }
5551 else if (! fixP->fx_addsy)
e0001a05 5552 {
30f725a1 5553 val = *valP;
e0001a05 5554 fixP->fx_done = 1;
30f725a1 5555 }
d47d412e
BW
5556 /* fall through */
5557
5558 case BFD_RELOC_XTENSA_PLT:
30f725a1
BW
5559 md_number_to_chars (fixpos, val, fixP->fx_size);
5560 fixP->fx_no_overflow = 0; /* Use the standard overflow check. */
5561 break;
e0001a05 5562
30f725a1
BW
5563 case BFD_RELOC_XTENSA_SLOT0_OP:
5564 case BFD_RELOC_XTENSA_SLOT1_OP:
5565 case BFD_RELOC_XTENSA_SLOT2_OP:
5566 case BFD_RELOC_XTENSA_SLOT3_OP:
5567 case BFD_RELOC_XTENSA_SLOT4_OP:
5568 case BFD_RELOC_XTENSA_SLOT5_OP:
5569 case BFD_RELOC_XTENSA_SLOT6_OP:
5570 case BFD_RELOC_XTENSA_SLOT7_OP:
5571 case BFD_RELOC_XTENSA_SLOT8_OP:
5572 case BFD_RELOC_XTENSA_SLOT9_OP:
5573 case BFD_RELOC_XTENSA_SLOT10_OP:
5574 case BFD_RELOC_XTENSA_SLOT11_OP:
5575 case BFD_RELOC_XTENSA_SLOT12_OP:
5576 case BFD_RELOC_XTENSA_SLOT13_OP:
5577 case BFD_RELOC_XTENSA_SLOT14_OP:
5578 if (linkrelax)
5579 {
5580 /* Write the tentative value of a PC-relative relocation to a
5581 local symbol into the instruction. The value will be ignored
5582 by the linker, and it makes the object file disassembly
5583 readable when all branch targets are encoded in relocations. */
5584
5585 assert (fixP->fx_addsy);
20ee54e8 5586 if (S_GET_SEGMENT (fixP->fx_addsy) == seg
30f725a1
BW
5587 && !S_FORCE_RELOC (fixP->fx_addsy, 1))
5588 {
5589 val = (S_GET_VALUE (fixP->fx_addsy) + fixP->fx_offset
5590 - md_pcrel_from (fixP));
5591 (void) xg_apply_fix_value (fixP, val);
5592 }
5593 }
5594 else if (! fixP->fx_addsy)
5595 {
5596 val = *valP;
5597 if (xg_apply_fix_value (fixP, val))
5598 fixP->fx_done = 1;
5599 }
5600 break;
e0001a05 5601
30f725a1
BW
5602 case BFD_RELOC_XTENSA_ASM_EXPAND:
5603 case BFD_RELOC_XTENSA_SLOT0_ALT:
5604 case BFD_RELOC_XTENSA_SLOT1_ALT:
5605 case BFD_RELOC_XTENSA_SLOT2_ALT:
5606 case BFD_RELOC_XTENSA_SLOT3_ALT:
5607 case BFD_RELOC_XTENSA_SLOT4_ALT:
5608 case BFD_RELOC_XTENSA_SLOT5_ALT:
5609 case BFD_RELOC_XTENSA_SLOT6_ALT:
5610 case BFD_RELOC_XTENSA_SLOT7_ALT:
5611 case BFD_RELOC_XTENSA_SLOT8_ALT:
5612 case BFD_RELOC_XTENSA_SLOT9_ALT:
5613 case BFD_RELOC_XTENSA_SLOT10_ALT:
5614 case BFD_RELOC_XTENSA_SLOT11_ALT:
5615 case BFD_RELOC_XTENSA_SLOT12_ALT:
5616 case BFD_RELOC_XTENSA_SLOT13_ALT:
5617 case BFD_RELOC_XTENSA_SLOT14_ALT:
5618 /* These all need to be resolved at link-time. Do nothing now. */
5619 break;
e0001a05 5620
30f725a1
BW
5621 case BFD_RELOC_VTABLE_INHERIT:
5622 case BFD_RELOC_VTABLE_ENTRY:
5623 fixP->fx_done = 0;
5624 break;
e0001a05 5625
30f725a1
BW
5626 default:
5627 as_bad (_("unhandled local relocation fix %s"),
5628 bfd_get_reloc_code_name (fixP->fx_r_type));
e0001a05
NC
5629 }
5630}
5631
5632
5633char *
7fa3d080 5634md_atof (int type, char *litP, int *sizeP)
e0001a05
NC
5635{
5636 int prec;
5637 LITTLENUM_TYPE words[4];
5638 char *t;
5639 int i;
5640
5641 switch (type)
5642 {
5643 case 'f':
5644 prec = 2;
5645 break;
5646
5647 case 'd':
5648 prec = 4;
5649 break;
5650
5651 default:
5652 *sizeP = 0;
5653 return "bad call to md_atof";
5654 }
5655
5656 t = atof_ieee (input_line_pointer, type, words);
5657 if (t)
5658 input_line_pointer = t;
5659
5660 *sizeP = prec * 2;
5661
5662 for (i = prec - 1; i >= 0; i--)
5663 {
5664 int idx = i;
5665 if (target_big_endian)
5666 idx = (prec - 1 - i);
5667
5668 md_number_to_chars (litP, (valueT) words[idx], 2);
5669 litP += 2;
5670 }
5671
5672 return NULL;
5673}
5674
5675
5676int
7fa3d080 5677md_estimate_size_before_relax (fragS *fragP, segT seg ATTRIBUTE_UNUSED)
e0001a05 5678{
34e41783 5679 return total_frag_text_expansion (fragP);
e0001a05
NC
5680}
5681
5682
5683/* Translate internal representation of relocation info to BFD target
5684 format. */
5685
5686arelent *
30f725a1 5687tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
e0001a05
NC
5688{
5689 arelent *reloc;
5690
5691 reloc = (arelent *) xmalloc (sizeof (arelent));
5692 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
5693 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
5694 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
5695
5696 /* Make sure none of our internal relocations make it this far.
5697 They'd better have been fully resolved by this point. */
5698 assert ((int) fixp->fx_r_type > 0);
5699
30f725a1 5700 reloc->addend = fixp->fx_offset;
43cd72b9 5701
e0001a05
NC
5702 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
5703 if (reloc->howto == NULL)
5704 {
5705 as_bad_where (fixp->fx_file, fixp->fx_line,
5706 _("cannot represent `%s' relocation in object file"),
5707 bfd_get_reloc_code_name (fixp->fx_r_type));
43cd72b9
BW
5708 free (reloc->sym_ptr_ptr);
5709 free (reloc);
e0001a05
NC
5710 return NULL;
5711 }
5712
5713 if (!fixp->fx_pcrel != !reloc->howto->pc_relative)
43cd72b9
BW
5714 as_fatal (_("internal error? cannot generate `%s' relocation"),
5715 bfd_get_reloc_code_name (fixp->fx_r_type));
e0001a05 5716
e0001a05
NC
5717 return reloc;
5718}
5719
7fa3d080
BW
5720\f
5721/* Checks for resource conflicts between instructions. */
5722
c138bc38
BW
5723/* The func unit stuff could be implemented as bit-vectors rather
5724 than the iterative approach here. If it ends up being too
7fa3d080
BW
5725 slow, we will switch it. */
5726
c138bc38 5727resource_table *
7fa3d080
BW
5728new_resource_table (void *data,
5729 int cycles,
5730 int nu,
5731 unit_num_copies_func uncf,
5732 opcode_num_units_func onuf,
5733 opcode_funcUnit_use_unit_func ouuf,
5734 opcode_funcUnit_use_stage_func ousf)
5735{
5736 int i;
5737 resource_table *rt = (resource_table *) xmalloc (sizeof (resource_table));
5738 rt->data = data;
5739 rt->cycles = cycles;
5740 rt->allocated_cycles = cycles;
5741 rt->num_units = nu;
5742 rt->unit_num_copies = uncf;
5743 rt->opcode_num_units = onuf;
5744 rt->opcode_unit_use = ouuf;
5745 rt->opcode_unit_stage = ousf;
5746
0bf60745 5747 rt->units = (unsigned char **) xcalloc (cycles, sizeof (unsigned char *));
7fa3d080 5748 for (i = 0; i < cycles; i++)
0bf60745 5749 rt->units[i] = (unsigned char *) xcalloc (nu, sizeof (unsigned char));
7fa3d080
BW
5750
5751 return rt;
5752}
5753
5754
c138bc38 5755void
7fa3d080
BW
5756clear_resource_table (resource_table *rt)
5757{
5758 int i, j;
5759 for (i = 0; i < rt->allocated_cycles; i++)
5760 for (j = 0; j < rt->num_units; j++)
5761 rt->units[i][j] = 0;
5762}
5763
5764
5765/* We never shrink it, just fake it into thinking so. */
5766
c138bc38 5767void
7fa3d080
BW
5768resize_resource_table (resource_table *rt, int cycles)
5769{
5770 int i, old_cycles;
5771
5772 rt->cycles = cycles;
5773 if (cycles <= rt->allocated_cycles)
5774 return;
5775
5776 old_cycles = rt->allocated_cycles;
5777 rt->allocated_cycles = cycles;
5778
0bf60745
BW
5779 rt->units = xrealloc (rt->units,
5780 rt->allocated_cycles * sizeof (unsigned char *));
7fa3d080 5781 for (i = 0; i < old_cycles; i++)
0bf60745
BW
5782 rt->units[i] = xrealloc (rt->units[i],
5783 rt->num_units * sizeof (unsigned char));
7fa3d080 5784 for (i = old_cycles; i < cycles; i++)
0bf60745 5785 rt->units[i] = xcalloc (rt->num_units, sizeof (unsigned char));
7fa3d080
BW
5786}
5787
5788
c138bc38 5789bfd_boolean
7fa3d080
BW
5790resources_available (resource_table *rt, xtensa_opcode opcode, int cycle)
5791{
5792 int i;
5793 int uses = (rt->opcode_num_units) (rt->data, opcode);
5794
c138bc38 5795 for (i = 0; i < uses; i++)
7fa3d080
BW
5796 {
5797 xtensa_funcUnit unit = (rt->opcode_unit_use) (rt->data, opcode, i);
5798 int stage = (rt->opcode_unit_stage) (rt->data, opcode, i);
5799 int copies_in_use = rt->units[stage + cycle][unit];
5800 int copies = (rt->unit_num_copies) (rt->data, unit);
5801 if (copies_in_use >= copies)
5802 return FALSE;
5803 }
5804 return TRUE;
5805}
7fa3d080 5806
c138bc38
BW
5807
5808void
7fa3d080
BW
5809reserve_resources (resource_table *rt, xtensa_opcode opcode, int cycle)
5810{
5811 int i;
5812 int uses = (rt->opcode_num_units) (rt->data, opcode);
5813
c138bc38 5814 for (i = 0; i < uses; i++)
7fa3d080
BW
5815 {
5816 xtensa_funcUnit unit = (rt->opcode_unit_use) (rt->data, opcode, i);
5817 int stage = (rt->opcode_unit_stage) (rt->data, opcode, i);
c138bc38
BW
5818 /* Note that this allows resources to be oversubscribed. That's
5819 essential to the way the optional scheduler works.
7fa3d080
BW
5820 resources_available reports when a resource is over-subscribed,
5821 so it's easy to tell. */
5822 rt->units[stage + cycle][unit]++;
5823 }
5824}
5825
5826
c138bc38 5827void
7fa3d080
BW
5828release_resources (resource_table *rt, xtensa_opcode opcode, int cycle)
5829{
5830 int i;
5831 int uses = (rt->opcode_num_units) (rt->data, opcode);
5832
c138bc38 5833 for (i = 0; i < uses; i++)
7fa3d080
BW
5834 {
5835 xtensa_funcUnit unit = (rt->opcode_unit_use) (rt->data, opcode, i);
5836 int stage = (rt->opcode_unit_stage) (rt->data, opcode, i);
0bf60745 5837 assert (rt->units[stage + cycle][unit] > 0);
7fa3d080 5838 rt->units[stage + cycle][unit]--;
7fa3d080
BW
5839 }
5840}
c138bc38 5841
7fa3d080
BW
5842
5843/* Wrapper functions make parameterized resource reservation
5844 more convenient. */
5845
c138bc38 5846int
7fa3d080
BW
5847opcode_funcUnit_use_unit (void *data, xtensa_opcode opcode, int idx)
5848{
5849 xtensa_funcUnit_use *use = xtensa_opcode_funcUnit_use (data, opcode, idx);
c138bc38 5850 return use->unit;
7fa3d080
BW
5851}
5852
5853
c138bc38 5854int
7fa3d080
BW
5855opcode_funcUnit_use_stage (void *data, xtensa_opcode opcode, int idx)
5856{
5857 xtensa_funcUnit_use *use = xtensa_opcode_funcUnit_use (data, opcode, idx);
5858 return use->stage;
5859}
5860
5861
5862/* Note that this function does not check issue constraints, but
5863 solely whether the hardware is available to execute the given
c138bc38 5864 instructions together. It also doesn't check if the tinsns
7fa3d080 5865 write the same state, or access the same tieports. That is
a1ace8d8 5866 checked by check_t1_t2_reads_and_writes. */
7fa3d080
BW
5867
5868static bfd_boolean
5869resources_conflict (vliw_insn *vinsn)
5870{
5871 int i;
5872 static resource_table *rt = NULL;
5873
5874 /* This is the most common case by far. Optimize it. */
5875 if (vinsn->num_slots == 1)
5876 return FALSE;
43cd72b9 5877
c138bc38 5878 if (rt == NULL)
7fa3d080
BW
5879 {
5880 xtensa_isa isa = xtensa_default_isa;
5881 rt = new_resource_table
5882 (isa, xtensa_isa_num_pipe_stages (isa),
5883 xtensa_isa_num_funcUnits (isa),
5884 (unit_num_copies_func) xtensa_funcUnit_num_copies,
5885 (opcode_num_units_func) xtensa_opcode_num_funcUnit_uses,
5886 opcode_funcUnit_use_unit,
5887 opcode_funcUnit_use_stage);
5888 }
43cd72b9 5889
7fa3d080 5890 clear_resource_table (rt);
43cd72b9 5891
7fa3d080
BW
5892 for (i = 0; i < vinsn->num_slots; i++)
5893 {
5894 if (!resources_available (rt, vinsn->slots[i].opcode, 0))
5895 return TRUE;
5896 reserve_resources (rt, vinsn->slots[i].opcode, 0);
5897 }
e0001a05 5898
7fa3d080
BW
5899 return FALSE;
5900}
e0001a05 5901
7fa3d080
BW
5902\f
5903/* finish_vinsn, emit_single_op and helper functions. */
e0001a05 5904
7fa3d080
BW
5905static bfd_boolean find_vinsn_conflicts (vliw_insn *);
5906static xtensa_format xg_find_narrowest_format (vliw_insn *);
7fa3d080 5907static void xg_assemble_vliw_tokens (vliw_insn *);
e0001a05
NC
5908
5909
43cd72b9
BW
5910/* We have reached the end of a bundle; emit into the frag. */
5911
e0001a05 5912static void
7fa3d080 5913finish_vinsn (vliw_insn *vinsn)
e0001a05 5914{
43cd72b9
BW
5915 IStack slotstack;
5916 int i;
5917 char *file_name;
d77b99c9 5918 unsigned line;
e0001a05 5919
43cd72b9 5920 if (find_vinsn_conflicts (vinsn))
a1ace8d8
BW
5921 {
5922 xg_clear_vinsn (vinsn);
5923 return;
5924 }
43cd72b9
BW
5925
5926 /* First, find a format that works. */
5927 if (vinsn->format == XTENSA_UNDEFINED)
5928 vinsn->format = xg_find_narrowest_format (vinsn);
5929
5930 if (vinsn->format == XTENSA_UNDEFINED)
5931 {
5932 as_where (&file_name, &line);
5933 as_bad_where (file_name, line,
5934 _("couldn't find a valid instruction format"));
5935 fprintf (stderr, _(" ops were: "));
5936 for (i = 0; i < vinsn->num_slots; i++)
5937 fprintf (stderr, _(" %s;"),
5938 xtensa_opcode_name (xtensa_default_isa,
5939 vinsn->slots[i].opcode));
5940 fprintf (stderr, _("\n"));
5941 xg_clear_vinsn (vinsn);
5942 return;
5943 }
5944
5945 if (vinsn->num_slots
5946 != xtensa_format_num_slots (xtensa_default_isa, vinsn->format))
e0001a05 5947 {
43cd72b9
BW
5948 as_bad (_("format '%s' allows %d slots, but there are %d opcodes"),
5949 xtensa_format_name (xtensa_default_isa, vinsn->format),
5950 xtensa_format_num_slots (xtensa_default_isa, vinsn->format),
5951 vinsn->num_slots);
5952 xg_clear_vinsn (vinsn);
5953 return;
5954 }
e0001a05 5955
c138bc38 5956 if (resources_conflict (vinsn))
43cd72b9
BW
5957 {
5958 as_where (&file_name, &line);
5959 as_bad_where (file_name, line, _("illegal resource usage in bundle"));
5960 fprintf (stderr, " ops were: ");
5961 for (i = 0; i < vinsn->num_slots; i++)
5962 fprintf (stderr, " %s;",
5963 xtensa_opcode_name (xtensa_default_isa,
5964 vinsn->slots[i].opcode));
5965 fprintf (stderr, "\n");
5966 xg_clear_vinsn (vinsn);
5967 return;
5968 }
5969
5970 for (i = 0; i < vinsn->num_slots; i++)
5971 {
5972 if (vinsn->slots[i].opcode != XTENSA_UNDEFINED)
e0001a05 5973 {
43cd72b9
BW
5974 symbolS *lit_sym = NULL;
5975 int j;
5976 bfd_boolean e = FALSE;
5977 bfd_boolean saved_density = density_supported;
5978
5979 /* We don't want to narrow ops inside multi-slot bundles. */
5980 if (vinsn->num_slots > 1)
5981 density_supported = FALSE;
5982
5983 istack_init (&slotstack);
5984 if (vinsn->slots[i].opcode == xtensa_nop_opcode)
e0001a05 5985 {
43cd72b9
BW
5986 vinsn->slots[i].opcode =
5987 xtensa_format_slot_nop_opcode (xtensa_default_isa,
5988 vinsn->format, i);
5989 vinsn->slots[i].ntok = 0;
5990 }
e0001a05 5991
43cd72b9
BW
5992 if (xg_expand_assembly_insn (&slotstack, &vinsn->slots[i]))
5993 {
5994 e = TRUE;
5995 continue;
e0001a05 5996 }
e0001a05 5997
43cd72b9 5998 density_supported = saved_density;
e0001a05 5999
43cd72b9
BW
6000 if (e)
6001 {
6002 xg_clear_vinsn (vinsn);
6003 return;
6004 }
e0001a05 6005
0fa77c95 6006 for (j = 0; j < slotstack.ninsn; j++)
43cd72b9
BW
6007 {
6008 TInsn *insn = &slotstack.insn[j];
6009 if (insn->insn_type == ITYPE_LITERAL)
6010 {
6011 assert (lit_sym == NULL);
6012 lit_sym = xg_assemble_literal (insn);
6013 }
6014 else
6015 {
0fa77c95 6016 assert (insn->insn_type == ITYPE_INSN);
43cd72b9
BW
6017 if (lit_sym)
6018 xg_resolve_literals (insn, lit_sym);
0fa77c95
BW
6019 if (j != slotstack.ninsn - 1)
6020 emit_single_op (insn);
43cd72b9
BW
6021 }
6022 }
6023
6024 if (vinsn->num_slots > 1)
6025 {
6026 if (opcode_fits_format_slot
6027 (slotstack.insn[slotstack.ninsn - 1].opcode,
6028 vinsn->format, i))
6029 {
6030 vinsn->slots[i] = slotstack.insn[slotstack.ninsn - 1];
6031 }
6032 else
6033 {
b2d179be 6034 emit_single_op (&slotstack.insn[slotstack.ninsn - 1]);
43cd72b9
BW
6035 if (vinsn->format == XTENSA_UNDEFINED)
6036 vinsn->slots[i].opcode = xtensa_nop_opcode;
6037 else
c138bc38 6038 vinsn->slots[i].opcode
43cd72b9
BW
6039 = xtensa_format_slot_nop_opcode (xtensa_default_isa,
6040 vinsn->format, i);
6041
6042 vinsn->slots[i].ntok = 0;
6043 }
6044 }
6045 else
6046 {
6047 vinsn->slots[0] = slotstack.insn[slotstack.ninsn - 1];
6048 vinsn->format = XTENSA_UNDEFINED;
6049 }
6050 }
6051 }
6052
6053 /* Now check resource conflicts on the modified bundle. */
c138bc38 6054 if (resources_conflict (vinsn))
43cd72b9
BW
6055 {
6056 as_where (&file_name, &line);
6057 as_bad_where (file_name, line, _("illegal resource usage in bundle"));
6058 fprintf (stderr, " ops were: ");
6059 for (i = 0; i < vinsn->num_slots; i++)
6060 fprintf (stderr, " %s;",
6061 xtensa_opcode_name (xtensa_default_isa,
6062 vinsn->slots[i].opcode));
6063 fprintf (stderr, "\n");
6064 xg_clear_vinsn (vinsn);
6065 return;
6066 }
6067
6068 /* First, find a format that works. */
6069 if (vinsn->format == XTENSA_UNDEFINED)
6070 vinsn->format = xg_find_narrowest_format (vinsn);
6071
6072 xg_assemble_vliw_tokens (vinsn);
6073
6074 xg_clear_vinsn (vinsn);
6075}
6076
6077
6078/* Given an vliw instruction, what conflicts are there in register
6079 usage and in writes to states and queues?
6080
6081 This function does two things:
6082 1. Reports an error when a vinsn contains illegal combinations
6083 of writes to registers states or queues.
6084 2. Marks individual tinsns as not relaxable if the combination
6085 contains antidependencies.
6086
6087 Job 2 handles things like swap semantics in instructions that need
6088 to be relaxed. For example,
6089
6090 addi a0, a1, 100000
6091
6092 normally would be relaxed to
6093
6094 l32r a0, some_label
6095 add a0, a1, a0
6096
6097 _but_, if the above instruction is bundled with an a0 reader, e.g.,
6098
6099 { addi a0, a1, 10000 ; add a2, a0, a4 ; }
6100
6101 then we can't relax it into
6102
6103 l32r a0, some_label
6104 { add a0, a1, a0 ; add a2, a0, a4 ; }
6105
6106 because the value of a0 is trashed before the second add can read it. */
6107
7fa3d080
BW
6108static char check_t1_t2_reads_and_writes (TInsn *, TInsn *);
6109
43cd72b9 6110static bfd_boolean
7fa3d080 6111find_vinsn_conflicts (vliw_insn *vinsn)
43cd72b9
BW
6112{
6113 int i, j;
6114 int branches = 0;
6115 xtensa_isa isa = xtensa_default_isa;
6116
6117 assert (!past_xtensa_end);
6118
6119 for (i = 0 ; i < vinsn->num_slots; i++)
6120 {
6121 TInsn *op1 = &vinsn->slots[i];
6122 if (op1->is_specific_opcode)
6123 op1->keep_wide = TRUE;
6124 else
6125 op1->keep_wide = FALSE;
6126 }
6127
6128 for (i = 0 ; i < vinsn->num_slots; i++)
6129 {
6130 TInsn *op1 = &vinsn->slots[i];
6131
6132 if (xtensa_opcode_is_branch (isa, op1->opcode) == 1)
6133 branches++;
6134
6135 for (j = 0; j < vinsn->num_slots; j++)
6136 {
6137 if (i != j)
6138 {
6139 TInsn *op2 = &vinsn->slots[j];
6140 char conflict_type = check_t1_t2_reads_and_writes (op1, op2);
6141 switch (conflict_type)
6142 {
6143 case 'c':
6144 as_bad (_("opcodes '%s' (slot %d) and '%s' (slot %d) write the same register"),
6145 xtensa_opcode_name (isa, op1->opcode), i,
6146 xtensa_opcode_name (isa, op2->opcode), j);
6147 return TRUE;
6148 case 'd':
6149 as_bad (_("opcodes '%s' (slot %d) and '%s' (slot %d) write the same state"),
6150 xtensa_opcode_name (isa, op1->opcode), i,
6151 xtensa_opcode_name (isa, op2->opcode), j);
6152 return TRUE;
6153 case 'e':
53dfbcc7 6154 as_bad (_("opcodes '%s' (slot %d) and '%s' (slot %d) write the same port"),
43cd72b9
BW
6155 xtensa_opcode_name (isa, op1->opcode), i,
6156 xtensa_opcode_name (isa, op2->opcode), j);
6157 return TRUE;
6158 case 'f':
53dfbcc7 6159 as_bad (_("opcodes '%s' (slot %d) and '%s' (slot %d) both have volatile port accesses"),
43cd72b9
BW
6160 xtensa_opcode_name (isa, op1->opcode), i,
6161 xtensa_opcode_name (isa, op2->opcode), j);
6162 return TRUE;
6163 default:
6164 /* Everything is OK. */
6165 break;
6166 }
6167 op2->is_specific_opcode = (op2->is_specific_opcode
6168 || conflict_type == 'a');
6169 }
6170 }
6171 }
6172
6173 if (branches > 1)
6174 {
6175 as_bad (_("multiple branches or jumps in the same bundle"));
6176 return TRUE;
6177 }
6178
6179 return FALSE;
6180}
6181
6182
a1ace8d8 6183/* Check how the state used by t1 and t2 relate.
43cd72b9
BW
6184 Cases found are:
6185
6186 case A: t1 reads a register t2 writes (an antidependency within a bundle)
6187 case B: no relationship between what is read and written (both could
6188 read the same reg though)
c138bc38 6189 case C: t1 writes a register t2 writes (a register conflict within a
43cd72b9
BW
6190 bundle)
6191 case D: t1 writes a state that t2 also writes
6192 case E: t1 writes a tie queue that t2 also writes
a1ace8d8 6193 case F: two volatile queue accesses
43cd72b9
BW
6194*/
6195
6196static char
7fa3d080 6197check_t1_t2_reads_and_writes (TInsn *t1, TInsn *t2)
43cd72b9
BW
6198{
6199 xtensa_isa isa = xtensa_default_isa;
6200 xtensa_regfile t1_regfile, t2_regfile;
6201 int t1_reg, t2_reg;
6202 int t1_base_reg, t1_last_reg;
6203 int t2_base_reg, t2_last_reg;
6204 char t1_inout, t2_inout;
6205 int i, j;
6206 char conflict = 'b';
6207 int t1_states;
6208 int t2_states;
6209 int t1_interfaces;
6210 int t2_interfaces;
6211 bfd_boolean t1_volatile = FALSE;
6212 bfd_boolean t2_volatile = FALSE;
6213
6214 /* Check registers. */
6215 for (j = 0; j < t2->ntok; j++)
6216 {
6217 if (xtensa_operand_is_register (isa, t2->opcode, j) != 1)
6218 continue;
6219
6220 t2_regfile = xtensa_operand_regfile (isa, t2->opcode, j);
6221 t2_base_reg = t2->tok[j].X_add_number;
6222 t2_last_reg = t2_base_reg + xtensa_operand_num_regs (isa, t2->opcode, j);
6223
6224 for (i = 0; i < t1->ntok; i++)
6225 {
6226 if (xtensa_operand_is_register (isa, t1->opcode, i) != 1)
6227 continue;
6228
6229 t1_regfile = xtensa_operand_regfile (isa, t1->opcode, i);
6230
6231 if (t1_regfile != t2_regfile)
6232 continue;
6233
6234 t1_inout = xtensa_operand_inout (isa, t1->opcode, i);
6235 t2_inout = xtensa_operand_inout (isa, t2->opcode, j);
6236
6237 if (xtensa_operand_is_known_reg (isa, t1->opcode, i) == 0
6238 || xtensa_operand_is_known_reg (isa, t2->opcode, j) == 0)
6239 {
6240 if (t1_inout == 'm' || t1_inout == 'o'
6241 || t2_inout == 'm' || t2_inout == 'o')
6242 {
6243 conflict = 'a';
6244 continue;
6245 }
6246 }
6247
6248 t1_base_reg = t1->tok[i].X_add_number;
6249 t1_last_reg = (t1_base_reg
6250 + xtensa_operand_num_regs (isa, t1->opcode, i));
6251
6252 for (t1_reg = t1_base_reg; t1_reg < t1_last_reg; t1_reg++)
6253 {
6254 for (t2_reg = t2_base_reg; t2_reg < t2_last_reg; t2_reg++)
6255 {
6256 if (t1_reg != t2_reg)
6257 continue;
6258
6259 if (t2_inout == 'i' && (t1_inout == 'm' || t1_inout == 'o'))
7fa3d080
BW
6260 {
6261 conflict = 'a';
6262 continue;
6263 }
43cd72b9 6264
7fa3d080
BW
6265 if (t1_inout == 'i' && (t2_inout == 'm' || t2_inout == 'o'))
6266 {
6267 conflict = 'a';
6268 continue;
6269 }
43cd72b9 6270
7fa3d080
BW
6271 if (t1_inout != 'i' && t2_inout != 'i')
6272 return 'c';
6273 }
6274 }
6275 }
6276 }
43cd72b9 6277
7fa3d080
BW
6278 /* Check states. */
6279 t1_states = xtensa_opcode_num_stateOperands (isa, t1->opcode);
6280 t2_states = xtensa_opcode_num_stateOperands (isa, t2->opcode);
6281 for (j = 0; j < t2_states; j++)
43cd72b9 6282 {
7fa3d080
BW
6283 xtensa_state t2_so = xtensa_stateOperand_state (isa, t2->opcode, j);
6284 t2_inout = xtensa_stateOperand_inout (isa, t2->opcode, j);
6285 for (i = 0; i < t1_states; i++)
6286 {
6287 xtensa_state t1_so = xtensa_stateOperand_state (isa, t1->opcode, i);
6288 t1_inout = xtensa_stateOperand_inout (isa, t1->opcode, i);
c138bc38 6289 if (t1_so != t2_so)
7fa3d080 6290 continue;
43cd72b9 6291
7fa3d080
BW
6292 if (t2_inout == 'i' && (t1_inout == 'm' || t1_inout == 'o'))
6293 {
6294 conflict = 'a';
6295 continue;
6296 }
c138bc38 6297
7fa3d080
BW
6298 if (t1_inout == 'i' && (t2_inout == 'm' || t2_inout == 'o'))
6299 {
6300 conflict = 'a';
6301 continue;
6302 }
c138bc38 6303
7fa3d080
BW
6304 if (t1_inout != 'i' && t2_inout != 'i')
6305 return 'd';
c138bc38 6306 }
7fa3d080 6307 }
43cd72b9 6308
7fa3d080
BW
6309 /* Check tieports. */
6310 t1_interfaces = xtensa_opcode_num_interfaceOperands (isa, t1->opcode);
6311 t2_interfaces = xtensa_opcode_num_interfaceOperands (isa, t2->opcode);
c138bc38 6312 for (j = 0; j < t2_interfaces; j++)
43cd72b9 6313 {
7fa3d080
BW
6314 xtensa_interface t2_int
6315 = xtensa_interfaceOperand_interface (isa, t2->opcode, j);
a1ace8d8
BW
6316 int t2_class = xtensa_interface_class_id (isa, t2_int);
6317
53dfbcc7 6318 t2_inout = xtensa_interface_inout (isa, t2_int);
a1ace8d8 6319 if (xtensa_interface_has_side_effect (isa, t2_int) == 1)
7fa3d080 6320 t2_volatile = TRUE;
a1ace8d8 6321
7fa3d080
BW
6322 for (i = 0; i < t1_interfaces; i++)
6323 {
6324 xtensa_interface t1_int
6325 = xtensa_interfaceOperand_interface (isa, t1->opcode, j);
2eccd1b4 6326 int t1_class = xtensa_interface_class_id (isa, t1_int);
a1ace8d8 6327
53dfbcc7 6328 t1_inout = xtensa_interface_inout (isa, t1_int);
a1ace8d8 6329 if (xtensa_interface_has_side_effect (isa, t1_int) == 1)
7fa3d080 6330 t1_volatile = TRUE;
a1ace8d8
BW
6331
6332 if (t1_volatile && t2_volatile && (t1_class == t2_class))
6333 return 'f';
c138bc38 6334
7fa3d080
BW
6335 if (t1_int != t2_int)
6336 continue;
c138bc38 6337
7fa3d080
BW
6338 if (t2_inout == 'i' && t1_inout == 'o')
6339 {
6340 conflict = 'a';
6341 continue;
6342 }
c138bc38 6343
7fa3d080
BW
6344 if (t1_inout == 'i' && t2_inout == 'o')
6345 {
6346 conflict = 'a';
6347 continue;
6348 }
c138bc38 6349
7fa3d080
BW
6350 if (t1_inout != 'i' && t2_inout != 'i')
6351 return 'e';
6352 }
43cd72b9 6353 }
c138bc38 6354
7fa3d080 6355 return conflict;
43cd72b9
BW
6356}
6357
6358
6359static xtensa_format
7fa3d080 6360xg_find_narrowest_format (vliw_insn *vinsn)
43cd72b9
BW
6361{
6362 /* Right now we assume that the ops within the vinsn are properly
6363 ordered for the slots that the programmer wanted them in. In
6364 other words, we don't rearrange the ops in hopes of finding a
6365 better format. The scheduler handles that. */
6366
6367 xtensa_isa isa = xtensa_default_isa;
6368 xtensa_format format;
6369 vliw_insn v_copy = *vinsn;
6370 xtensa_opcode nop_opcode = xtensa_nop_opcode;
6371
65738a7d
BW
6372 if (vinsn->num_slots == 1)
6373 return xg_get_single_format (vinsn->slots[0].opcode);
6374
43cd72b9
BW
6375 for (format = 0; format < xtensa_isa_num_formats (isa); format++)
6376 {
6377 v_copy = *vinsn;
6378 if (xtensa_format_num_slots (isa, format) == v_copy.num_slots)
6379 {
6380 int slot;
6381 int fit = 0;
6382 for (slot = 0; slot < v_copy.num_slots; slot++)
6383 {
6384 if (v_copy.slots[slot].opcode == nop_opcode)
6385 {
6386 v_copy.slots[slot].opcode =
6387 xtensa_format_slot_nop_opcode (isa, format, slot);
6388 v_copy.slots[slot].ntok = 0;
6389 }
6390
6391 if (opcode_fits_format_slot (v_copy.slots[slot].opcode,
6392 format, slot))
6393 fit++;
7fa3d080 6394 else if (v_copy.num_slots > 1)
43cd72b9 6395 {
7fa3d080
BW
6396 TInsn widened;
6397 /* Try the widened version. */
6398 if (!v_copy.slots[slot].keep_wide
6399 && !v_copy.slots[slot].is_specific_opcode
84b08ed9
BW
6400 && xg_is_single_relaxable_insn (&v_copy.slots[slot],
6401 &widened, TRUE)
7fa3d080
BW
6402 && opcode_fits_format_slot (widened.opcode,
6403 format, slot))
43cd72b9 6404 {
7fa3d080
BW
6405 v_copy.slots[slot] = widened;
6406 fit++;
43cd72b9
BW
6407 }
6408 }
6409 }
6410 if (fit == v_copy.num_slots)
6411 {
6412 *vinsn = v_copy;
6413 xtensa_format_encode (isa, format, vinsn->insnbuf);
6414 vinsn->format = format;
6415 break;
6416 }
6417 }
6418 }
6419
6420 if (format == xtensa_isa_num_formats (isa))
6421 return XTENSA_UNDEFINED;
6422
6423 return format;
6424}
6425
6426
6427/* Return the additional space needed in a frag
6428 for possible relaxations of any ops in a VLIW insn.
6429 Also fill out the relaxations that might be required of
6430 each tinsn in the vinsn. */
6431
6432static int
e7da6241 6433relaxation_requirements (vliw_insn *vinsn, bfd_boolean *pfinish_frag)
43cd72b9 6434{
e7da6241 6435 bfd_boolean finish_frag = FALSE;
43cd72b9
BW
6436 int extra_space = 0;
6437 int slot;
6438
6439 for (slot = 0; slot < vinsn->num_slots; slot++)
6440 {
6441 TInsn *tinsn = &vinsn->slots[slot];
6442 if (!tinsn_has_symbolic_operands (tinsn))
6443 {
6444 /* A narrow instruction could be widened later to help
6445 alignment issues. */
84b08ed9 6446 if (xg_is_single_relaxable_insn (tinsn, 0, TRUE)
43cd72b9
BW
6447 && !tinsn->is_specific_opcode
6448 && vinsn->num_slots == 1)
6449 {
6450 /* Difference in bytes between narrow and wide insns... */
6451 extra_space += 1;
6452 tinsn->subtype = RELAX_NARROW;
43cd72b9
BW
6453 }
6454 }
6455 else
6456 {
b08b5071
BW
6457 if (workaround_b_j_loop_end
6458 && tinsn->opcode == xtensa_jx_opcode
43cd72b9
BW
6459 && use_transform ())
6460 {
6461 /* Add 2 of these. */
6462 extra_space += 3; /* for the nop size */
6463 tinsn->subtype = RELAX_ADD_NOP_IF_PRE_LOOP_END;
6464 }
c138bc38 6465
43cd72b9
BW
6466 /* Need to assemble it with space for the relocation. */
6467 if (xg_is_relaxable_insn (tinsn, 0)
6468 && !tinsn->is_specific_opcode)
6469 {
6470 int max_size = xg_get_max_insn_widen_size (tinsn->opcode);
6471 int max_literal_size =
6472 xg_get_max_insn_widen_literal_size (tinsn->opcode);
c138bc38 6473
43cd72b9 6474 tinsn->literal_space = max_literal_size;
c138bc38 6475
43cd72b9 6476 tinsn->subtype = RELAX_IMMED;
43cd72b9
BW
6477 extra_space += max_size;
6478 }
6479 else
6480 {
e7da6241
BW
6481 /* A fix record will be added for this instruction prior
6482 to relaxation, so make it end the frag. */
6483 finish_frag = TRUE;
43cd72b9
BW
6484 }
6485 }
6486 }
e7da6241 6487 *pfinish_frag = finish_frag;
43cd72b9
BW
6488 return extra_space;
6489}
6490
6491
6492static void
b2d179be 6493bundle_tinsn (TInsn *tinsn, vliw_insn *vinsn)
43cd72b9
BW
6494{
6495 xtensa_isa isa = xtensa_default_isa;
b2d179be 6496 int slot, chosen_slot;
43cd72b9 6497
b2d179be
BW
6498 vinsn->format = xg_get_single_format (tinsn->opcode);
6499 assert (vinsn->format != XTENSA_UNDEFINED);
6500 vinsn->num_slots = xtensa_format_num_slots (isa, vinsn->format);
43cd72b9 6501
b2d179be
BW
6502 chosen_slot = xg_get_single_slot (tinsn->opcode);
6503 for (slot = 0; slot < vinsn->num_slots; slot++)
43cd72b9 6504 {
b2d179be
BW
6505 if (slot == chosen_slot)
6506 vinsn->slots[slot] = *tinsn;
6507 else
6508 {
6509 vinsn->slots[slot].opcode =
6510 xtensa_format_slot_nop_opcode (isa, vinsn->format, slot);
6511 vinsn->slots[slot].ntok = 0;
6512 vinsn->slots[slot].insn_type = ITYPE_INSN;
6513 }
43cd72b9 6514 }
43cd72b9
BW
6515}
6516
6517
6518static bfd_boolean
7fa3d080 6519emit_single_op (TInsn *orig_insn)
43cd72b9
BW
6520{
6521 int i;
6522 IStack istack; /* put instructions into here */
6523 symbolS *lit_sym = NULL;
6524 symbolS *label_sym = NULL;
6525
6526 istack_init (&istack);
6527
6528 /* Special-case for "movi aX, foo" which is guaranteed to need relaxing.
c138bc38
BW
6529 Because the scheduling and bundling characteristics of movi and
6530 l32r or const16 are so different, we can do much better if we relax
43cd72b9 6531 it prior to scheduling and bundling, rather than after. */
c138bc38 6532 if ((orig_insn->opcode == xtensa_movi_opcode
b08b5071
BW
6533 || orig_insn->opcode == xtensa_movi_n_opcode)
6534 && !cur_vinsn.inside_bundle
43cd72b9 6535 && (orig_insn->tok[1].X_op == O_symbol
482fd9f9
BW
6536 || orig_insn->tok[1].X_op == O_pltrel)
6537 && !orig_insn->is_specific_opcode && use_transform ())
43cd72b9
BW
6538 xg_assembly_relax (&istack, orig_insn, now_seg, frag_now, 0, 1, 0);
6539 else
6540 if (xg_expand_assembly_insn (&istack, orig_insn))
6541 return TRUE;
6542
6543 for (i = 0; i < istack.ninsn; i++)
6544 {
6545 TInsn *insn = &istack.insn[i];
c138bc38 6546 switch (insn->insn_type)
43cd72b9
BW
6547 {
6548 case ITYPE_LITERAL:
6549 assert (lit_sym == NULL);
6550 lit_sym = xg_assemble_literal (insn);
6551 break;
6552 case ITYPE_LABEL:
6553 {
6554 static int relaxed_sym_idx = 0;
6555 char *label = xmalloc (strlen (FAKE_LABEL_NAME) + 12);
6556 sprintf (label, "%s_rl_%x", FAKE_LABEL_NAME, relaxed_sym_idx++);
6557 colon (label);
6558 assert (label_sym == NULL);
6559 label_sym = symbol_find_or_make (label);
6560 assert (label_sym);
6561 free (label);
6562 }
6563 break;
6564 case ITYPE_INSN:
b2d179be
BW
6565 {
6566 vliw_insn v;
6567 if (lit_sym)
6568 xg_resolve_literals (insn, lit_sym);
6569 if (label_sym)
6570 xg_resolve_labels (insn, label_sym);
6571 xg_init_vinsn (&v);
6572 bundle_tinsn (insn, &v);
6573 finish_vinsn (&v);
6574 xg_free_vinsn (&v);
6575 }
43cd72b9
BW
6576 break;
6577 default:
6578 assert (0);
6579 break;
6580 }
6581 }
6582 return FALSE;
6583}
6584
6585
34e41783
BW
6586static int
6587total_frag_text_expansion (fragS *fragP)
6588{
6589 int slot;
6590 int total_expansion = 0;
6591
6592 for (slot = 0; slot < MAX_SLOTS; slot++)
6593 total_expansion += fragP->tc_frag_data.text_expansion[slot];
6594
6595 return total_expansion;
6596}
6597
6598
43cd72b9
BW
6599/* Emit a vliw instruction to the current fragment. */
6600
7fa3d080
BW
6601static void
6602xg_assemble_vliw_tokens (vliw_insn *vinsn)
43cd72b9 6603{
e7da6241 6604 bfd_boolean finish_frag;
43cd72b9
BW
6605 bfd_boolean is_jump = FALSE;
6606 bfd_boolean is_branch = FALSE;
6607 xtensa_isa isa = xtensa_default_isa;
6608 int i;
6609 int insn_size;
6610 int extra_space;
6611 char *f = NULL;
6612 int slot;
7c430684
BW
6613 unsigned current_line, best_linenum;
6614 char *current_file;
43cd72b9 6615
7c430684 6616 best_linenum = UINT_MAX;
43cd72b9
BW
6617
6618 if (generating_literals)
6619 {
6620 static int reported = 0;
6621 if (reported < 4)
6622 as_bad_where (frag_now->fr_file, frag_now->fr_line,
6623 _("cannot assemble into a literal fragment"));
6624 if (reported == 3)
6625 as_bad (_("..."));
6626 reported++;
6627 return;
6628 }
6629
6630 if (frag_now_fix () != 0
b08b5071 6631 && (! frag_now->tc_frag_data.is_insn
43cd72b9 6632 || (vinsn_has_specific_opcodes (vinsn) && use_transform ())
b08b5071 6633 || !use_transform () != frag_now->tc_frag_data.is_no_transform
7c834684
BW
6634 || (directive_state[directive_longcalls]
6635 != frag_now->tc_frag_data.use_longcalls)
43cd72b9
BW
6636 || (directive_state[directive_absolute_literals]
6637 != frag_now->tc_frag_data.use_absolute_literals)))
6638 {
6639 frag_wane (frag_now);
6640 frag_new (0);
6641 xtensa_set_frag_assembly_state (frag_now);
6642 }
6643
6644 if (workaround_a0_b_retw
6645 && vinsn->num_slots == 1
6646 && (get_last_insn_flags (now_seg, now_subseg) & FLAG_IS_A0_WRITER) != 0
6647 && xtensa_opcode_is_branch (isa, vinsn->slots[0].opcode) == 1
6648 && use_transform ())
6649 {
6650 has_a0_b_retw = TRUE;
6651
6652 /* Mark this fragment with the special RELAX_ADD_NOP_IF_A0_B_RETW.
6653 After the first assembly pass we will check all of them and
6654 add a nop if needed. */
6655 frag_now->tc_frag_data.is_insn = TRUE;
6656 frag_var (rs_machine_dependent, 4, 4,
6657 RELAX_ADD_NOP_IF_A0_B_RETW,
6658 frag_now->fr_symbol,
6659 frag_now->fr_offset,
6660 NULL);
6661 xtensa_set_frag_assembly_state (frag_now);
6662 frag_now->tc_frag_data.is_insn = TRUE;
6663 frag_var (rs_machine_dependent, 4, 4,
6664 RELAX_ADD_NOP_IF_A0_B_RETW,
6665 frag_now->fr_symbol,
6666 frag_now->fr_offset,
6667 NULL);
6668 xtensa_set_frag_assembly_state (frag_now);
6669 }
6670
6671 for (i = 0; i < vinsn->num_slots; i++)
6672 {
6673 /* See if the instruction implies an aligned section. */
6674 if (xtensa_opcode_is_loop (isa, vinsn->slots[i].opcode) == 1)
6675 record_alignment (now_seg, 2);
c138bc38 6676
43cd72b9 6677 /* Also determine the best line number for debug info. */
7c430684
BW
6678 best_linenum = vinsn->slots[i].linenum < best_linenum
6679 ? vinsn->slots[i].linenum : best_linenum;
43cd72b9
BW
6680 }
6681
6682 /* Special cases for instructions that force an alignment... */
6683 /* None of these opcodes are bundle-able. */
6684 if (xtensa_opcode_is_loop (isa, vinsn->slots[0].opcode) == 1)
6685 {
d77b99c9 6686 int max_fill;
c138bc38 6687
05d58145
BW
6688 /* Remember the symbol that marks the end of the loop in the frag
6689 that marks the start of the loop. This way we can easily find
6690 the end of the loop at the beginning, without adding special code
6691 to mark the loop instructions themselves. */
6692 symbolS *target_sym = NULL;
6693 if (vinsn->slots[0].tok[1].X_op == O_symbol)
6694 target_sym = vinsn->slots[0].tok[1].X_add_symbol;
6695
43cd72b9
BW
6696 xtensa_set_frag_assembly_state (frag_now);
6697 frag_now->tc_frag_data.is_insn = TRUE;
c138bc38 6698
43cd72b9
BW
6699 max_fill = get_text_align_max_fill_size
6700 (get_text_align_power (xtensa_fetch_width),
6701 TRUE, frag_now->tc_frag_data.is_no_density);
6702
6703 if (use_transform ())
6704 frag_var (rs_machine_dependent, max_fill, max_fill,
05d58145 6705 RELAX_ALIGN_NEXT_OPCODE, target_sym, 0, NULL);
43cd72b9 6706 else
c138bc38 6707 frag_var (rs_machine_dependent, 0, 0,
05d58145 6708 RELAX_CHECK_ALIGN_NEXT_OPCODE, target_sym, 0, NULL);
43cd72b9 6709 xtensa_set_frag_assembly_state (frag_now);
43cd72b9
BW
6710 }
6711
b08b5071 6712 if (vinsn->slots[0].opcode == xtensa_entry_opcode
43cd72b9
BW
6713 && !vinsn->slots[0].is_specific_opcode)
6714 {
6715 xtensa_mark_literal_pool_location ();
c3ea6048 6716 xtensa_move_labels (frag_now, 0);
43cd72b9
BW
6717 frag_var (rs_align_test, 1, 1, 0, NULL, 2, NULL);
6718 }
6719
6720 if (vinsn->num_slots == 1)
6721 {
6722 if (workaround_a0_b_retw && use_transform ())
6723 set_last_insn_flags (now_seg, now_subseg, FLAG_IS_A0_WRITER,
6724 is_register_writer (&vinsn->slots[0], "a", 0));
6725
6726 set_last_insn_flags (now_seg, now_subseg, FLAG_IS_BAD_LOOPEND,
6727 is_bad_loopend_opcode (&vinsn->slots[0]));
6728 }
6729 else
6730 set_last_insn_flags (now_seg, now_subseg, FLAG_IS_BAD_LOOPEND, FALSE);
6731
6732 insn_size = xtensa_format_length (isa, vinsn->format);
6733
e7da6241 6734 extra_space = relaxation_requirements (vinsn, &finish_frag);
43cd72b9
BW
6735
6736 /* vinsn_to_insnbuf will produce the error. */
6737 if (vinsn->format != XTENSA_UNDEFINED)
6738 {
d77b99c9 6739 f = frag_more (insn_size + extra_space);
43cd72b9
BW
6740 xtensa_set_frag_assembly_state (frag_now);
6741 frag_now->tc_frag_data.is_insn = TRUE;
6742 }
6743
e7da6241 6744 vinsn_to_insnbuf (vinsn, f, frag_now, FALSE);
43cd72b9
BW
6745 if (vinsn->format == XTENSA_UNDEFINED)
6746 return;
6747
d77b99c9 6748 xtensa_insnbuf_to_chars (isa, vinsn->insnbuf, (unsigned char *) f, 0);
c138bc38 6749
7c430684
BW
6750 /* Temporarily set the logical line number to the one we want to appear
6751 in the debug information. */
6752 as_where (&current_file, &current_line);
6753 new_logical_line (current_file, best_linenum);
6754 dwarf2_emit_insn (insn_size + extra_space);
6755 new_logical_line (current_file, current_line);
43cd72b9
BW
6756
6757 for (slot = 0; slot < vinsn->num_slots; slot++)
6758 {
6759 TInsn *tinsn = &vinsn->slots[slot];
6760 frag_now->tc_frag_data.slot_subtypes[slot] = tinsn->subtype;
7c834684 6761 frag_now->tc_frag_data.slot_symbols[slot] = tinsn->symbol;
7c834684 6762 frag_now->tc_frag_data.slot_offsets[slot] = tinsn->offset;
43cd72b9
BW
6763 frag_now->tc_frag_data.literal_frags[slot] = tinsn->literal_frag;
6764 if (tinsn->literal_space != 0)
6765 xg_assemble_literal_space (tinsn->literal_space, slot);
6766
6767 if (tinsn->subtype == RELAX_NARROW)
6768 assert (vinsn->num_slots == 1);
6769 if (xtensa_opcode_is_jump (isa, tinsn->opcode) == 1)
6770 is_jump = TRUE;
6771 if (xtensa_opcode_is_branch (isa, tinsn->opcode) == 1)
6772 is_branch = TRUE;
6773
e7da6241
BW
6774 if (tinsn->subtype || tinsn->symbol || tinsn->offset
6775 || tinsn->literal_frag || is_jump || is_branch)
43cd72b9
BW
6776 finish_frag = TRUE;
6777 }
6778
6779 if (vinsn_has_specific_opcodes (vinsn) && use_transform ())
b08b5071 6780 frag_now->tc_frag_data.is_specific_opcode = TRUE;
43cd72b9
BW
6781
6782 if (finish_frag)
6783 {
6784 frag_variant (rs_machine_dependent,
6785 extra_space, extra_space, RELAX_SLOTS,
6786 frag_now->fr_symbol, frag_now->fr_offset, f);
6787 xtensa_set_frag_assembly_state (frag_now);
6788 }
6789
6790 /* Special cases for loops:
6791 close_loop_end should be inserted AFTER short_loop.
6792 Make sure that CLOSE loops are processed BEFORE short_loops
6793 when converting them. */
6794
6795 /* "short_loop": Add a NOP if the loop is < 4 bytes. */
64b607e6 6796 if (xtensa_opcode_is_loop (isa, vinsn->slots[0].opcode) == 1
43cd72b9
BW
6797 && !vinsn->slots[0].is_specific_opcode)
6798 {
6799 if (workaround_short_loop && use_transform ())
6800 {
6801 maybe_has_short_loop = TRUE;
6802 frag_now->tc_frag_data.is_insn = TRUE;
6803 frag_var (rs_machine_dependent, 4, 4,
6804 RELAX_ADD_NOP_IF_SHORT_LOOP,
6805 frag_now->fr_symbol, frag_now->fr_offset, NULL);
6806 frag_now->tc_frag_data.is_insn = TRUE;
6807 frag_var (rs_machine_dependent, 4, 4,
6808 RELAX_ADD_NOP_IF_SHORT_LOOP,
6809 frag_now->fr_symbol, frag_now->fr_offset, NULL);
6810 }
6811
6812 /* "close_loop_end": Add up to 12 bytes of NOPs to keep a
6813 loop at least 12 bytes away from another loop's end. */
6814 if (workaround_close_loop_end && use_transform ())
6815 {
6816 maybe_has_close_loop_end = TRUE;
6817 frag_now->tc_frag_data.is_insn = TRUE;
6818 frag_var (rs_machine_dependent, 12, 12,
6819 RELAX_ADD_NOP_IF_CLOSE_LOOP_END,
6820 frag_now->fr_symbol, frag_now->fr_offset, NULL);
6821 }
6822 }
6823
6824 if (use_transform ())
6825 {
6826 if (is_jump)
6827 {
6828 assert (finish_frag);
6829 frag_var (rs_machine_dependent,
6830 UNREACHABLE_MAX_WIDTH, UNREACHABLE_MAX_WIDTH,
6831 RELAX_UNREACHABLE,
6832 frag_now->fr_symbol, frag_now->fr_offset, NULL);
6833 xtensa_set_frag_assembly_state (frag_now);
6834 }
7b1cc377 6835 else if (is_branch && do_align_targets ())
43cd72b9
BW
6836 {
6837 assert (finish_frag);
6838 frag_var (rs_machine_dependent,
6839 UNREACHABLE_MAX_WIDTH, UNREACHABLE_MAX_WIDTH,
6840 RELAX_MAYBE_UNREACHABLE,
6841 frag_now->fr_symbol, frag_now->fr_offset, NULL);
6842 xtensa_set_frag_assembly_state (frag_now);
6843 frag_var (rs_machine_dependent,
6844 0, 0,
6845 RELAX_MAYBE_DESIRE_ALIGN,
6846 frag_now->fr_symbol, frag_now->fr_offset, NULL);
6847 xtensa_set_frag_assembly_state (frag_now);
6848 }
6849 }
6850
6851 /* Now, if the original opcode was a call... */
6852 if (do_align_targets ()
6853 && xtensa_opcode_is_call (isa, vinsn->slots[0].opcode) == 1)
6854 {
b08b5071 6855 float freq = get_subseg_total_freq (now_seg, now_subseg);
43cd72b9
BW
6856 frag_now->tc_frag_data.is_insn = TRUE;
6857 frag_var (rs_machine_dependent, 4, (int) freq, RELAX_DESIRE_ALIGN,
6858 frag_now->fr_symbol, frag_now->fr_offset, NULL);
6859 xtensa_set_frag_assembly_state (frag_now);
6860 }
6861
6862 if (vinsn_has_specific_opcodes (vinsn) && use_transform ())
6863 {
6864 frag_wane (frag_now);
6865 frag_new (0);
6866 xtensa_set_frag_assembly_state (frag_now);
6867 }
6868}
6869
6870\f
7fa3d080
BW
6871/* xtensa_end and helper functions. */
6872
6873static void xtensa_cleanup_align_frags (void);
6874static void xtensa_fix_target_frags (void);
6875static void xtensa_mark_narrow_branches (void);
6876static void xtensa_mark_zcl_first_insns (void);
6877static void xtensa_fix_a0_b_retw_frags (void);
6878static void xtensa_fix_b_j_loop_end_frags (void);
6879static void xtensa_fix_close_loop_end_frags (void);
6880static void xtensa_fix_short_loop_frags (void);
6881static void xtensa_sanity_check (void);
2caa7ca0 6882static void xtensa_add_config_info (void);
7fa3d080 6883
43cd72b9 6884void
7fa3d080 6885xtensa_end (void)
43cd72b9
BW
6886{
6887 directive_balance ();
6888 xtensa_flush_pending_output ();
6889
6890 past_xtensa_end = TRUE;
6891
6892 xtensa_move_literals ();
6893
6894 xtensa_reorder_segments ();
6895 xtensa_cleanup_align_frags ();
6896 xtensa_fix_target_frags ();
6897 if (workaround_a0_b_retw && has_a0_b_retw)
6898 xtensa_fix_a0_b_retw_frags ();
6899 if (workaround_b_j_loop_end)
6900 xtensa_fix_b_j_loop_end_frags ();
6901
6902 /* "close_loop_end" should be processed BEFORE "short_loop". */
6903 if (workaround_close_loop_end && maybe_has_close_loop_end)
6904 xtensa_fix_close_loop_end_frags ();
6905
6906 if (workaround_short_loop && maybe_has_short_loop)
6907 xtensa_fix_short_loop_frags ();
03aaa593
BW
6908 if (align_targets)
6909 xtensa_mark_narrow_branches ();
43cd72b9
BW
6910 xtensa_mark_zcl_first_insns ();
6911
6912 xtensa_sanity_check ();
2caa7ca0
BW
6913
6914 xtensa_add_config_info ();
43cd72b9
BW
6915}
6916
6917
6918static void
7fa3d080 6919xtensa_cleanup_align_frags (void)
43cd72b9
BW
6920{
6921 frchainS *frchP;
c9049d30 6922 asection *s;
43cd72b9 6923
c9049d30
AM
6924 for (s = stdoutput->sections; s; s = s->next)
6925 for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next)
6926 {
6927 fragS *fragP;
6928 /* Walk over all of the fragments in a subsection. */
6929 for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next)
6930 {
6931 if ((fragP->fr_type == rs_align
6932 || fragP->fr_type == rs_align_code
6933 || (fragP->fr_type == rs_machine_dependent
6934 && (fragP->fr_subtype == RELAX_DESIRE_ALIGN
6935 || fragP->fr_subtype == RELAX_DESIRE_ALIGN_IF_TARGET)))
6936 && fragP->fr_fix == 0)
6937 {
6938 fragS *next = fragP->fr_next;
6939
6940 while (next
6941 && next->fr_fix == 0
6942 && next->fr_type == rs_machine_dependent
6943 && next->fr_subtype == RELAX_DESIRE_ALIGN_IF_TARGET)
6944 {
6945 frag_wane (next);
6946 next = next->fr_next;
6947 }
6948 }
6949 /* If we don't widen branch targets, then they
6950 will be easier to align. */
6951 if (fragP->tc_frag_data.is_branch_target
6952 && fragP->fr_opcode == fragP->fr_literal
6953 && fragP->fr_type == rs_machine_dependent
6954 && fragP->fr_subtype == RELAX_SLOTS
6955 && fragP->tc_frag_data.slot_subtypes[0] == RELAX_NARROW)
6956 frag_wane (fragP);
6957 if (fragP->fr_type == rs_machine_dependent
6958 && fragP->fr_subtype == RELAX_UNREACHABLE)
6959 fragP->tc_frag_data.is_unreachable = TRUE;
6960 }
6961 }
43cd72b9
BW
6962}
6963
6964
6965/* Re-process all of the fragments looking to convert all of the
6966 RELAX_DESIRE_ALIGN_IF_TARGET fragments. If there is a branch
6967 target in the next fragment, convert this to RELAX_DESIRE_ALIGN.
7b1cc377 6968 Otherwise, convert to a .fill 0. */
7fa3d080 6969
43cd72b9 6970static void
7fa3d080 6971xtensa_fix_target_frags (void)
e0001a05
NC
6972{
6973 frchainS *frchP;
c9049d30 6974 asection *s;
e0001a05
NC
6975
6976 /* When this routine is called, all of the subsections are still intact
6977 so we walk over subsections instead of sections. */
c9049d30
AM
6978 for (s = stdoutput->sections; s; s = s->next)
6979 for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next)
6980 {
6981 fragS *fragP;
e0001a05 6982
c9049d30
AM
6983 /* Walk over all of the fragments in a subsection. */
6984 for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next)
6985 {
6986 if (fragP->fr_type == rs_machine_dependent
6987 && fragP->fr_subtype == RELAX_DESIRE_ALIGN_IF_TARGET)
6988 {
6989 if (next_frag_is_branch_target (fragP))
6990 fragP->fr_subtype = RELAX_DESIRE_ALIGN;
6991 else
6992 frag_wane (fragP);
6993 }
6994 }
6995 }
e0001a05
NC
6996}
6997
6998
7fa3d080
BW
6999static bfd_boolean is_narrow_branch_guaranteed_in_range (fragS *, TInsn *);
7000
43cd72b9 7001static void
7fa3d080 7002xtensa_mark_narrow_branches (void)
43cd72b9
BW
7003{
7004 frchainS *frchP;
c9049d30 7005 asection *s;
43cd72b9 7006
c9049d30
AM
7007 for (s = stdoutput->sections; s; s = s->next)
7008 for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next)
7009 {
7010 fragS *fragP;
7011 /* Walk over all of the fragments in a subsection. */
7012 for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next)
7013 {
7014 if (fragP->fr_type == rs_machine_dependent
7015 && fragP->fr_subtype == RELAX_SLOTS
7016 && fragP->tc_frag_data.slot_subtypes[0] == RELAX_IMMED)
7017 {
7018 vliw_insn vinsn;
7019
7020 vinsn_from_chars (&vinsn, fragP->fr_opcode);
7021 tinsn_immed_from_frag (&vinsn.slots[0], fragP, 0);
7022
7023 if (vinsn.num_slots == 1
7024 && xtensa_opcode_is_branch (xtensa_default_isa,
64b607e6 7025 vinsn.slots[0].opcode) == 1
c9049d30
AM
7026 && xg_get_single_size (vinsn.slots[0].opcode) == 2
7027 && is_narrow_branch_guaranteed_in_range (fragP,
7028 &vinsn.slots[0]))
7029 {
7030 fragP->fr_subtype = RELAX_SLOTS;
7031 fragP->tc_frag_data.slot_subtypes[0] = RELAX_NARROW;
7032 fragP->tc_frag_data.is_aligning_branch = 1;
7033 }
7034 }
7035 }
7036 }
43cd72b9
BW
7037}
7038
7039
7040/* A branch is typically widened only when its target is out of
7041 range. However, we would like to widen them to align a subsequent
7042 branch target when possible.
7043
7044 Because the branch relaxation code is so convoluted, the optimal solution
7045 (combining the two cases) is difficult to get right in all circumstances.
7046 We therefore go with an "almost as good" solution, where we only
7047 use for alignment narrow branches that definitely will not expand to a
7048 jump and a branch. These functions find and mark these cases. */
7049
a67517f4
BW
7050/* The range in bytes of BNEZ.N and BEQZ.N. The target operand is encoded
7051 as PC + 4 + imm6, where imm6 is a 6-bit immediate ranging from 0 to 63.
7052 We start counting beginning with the frag after the 2-byte branch, so the
7053 maximum offset is (4 - 2) + 63 = 65. */
7054#define MAX_IMMED6 65
43cd72b9 7055
d77b99c9 7056static offsetT unrelaxed_frag_max_size (fragS *);
7fa3d080 7057
43cd72b9 7058static bfd_boolean
7fa3d080 7059is_narrow_branch_guaranteed_in_range (fragS *fragP, TInsn *tinsn)
43cd72b9
BW
7060{
7061 const expressionS *expr = &tinsn->tok[1];
7062 symbolS *symbolP = expr->X_add_symbol;
d77b99c9 7063 offsetT max_distance = expr->X_add_number;
e7da6241
BW
7064 fragS *target_frag;
7065
7066 if (expr->X_op != O_symbol)
7067 return FALSE;
7068
7069 target_frag = symbol_get_frag (symbolP);
7070
43cd72b9
BW
7071 max_distance += (S_GET_VALUE (symbolP) - target_frag->fr_address);
7072 if (is_branch_jmp_to_next (tinsn, fragP))
7073 return FALSE;
7074
7075 /* The branch doesn't branch over it's own frag,
7076 but over the subsequent ones. */
7077 fragP = fragP->fr_next;
7078 while (fragP != NULL && fragP != target_frag && max_distance <= MAX_IMMED6)
7079 {
7080 max_distance += unrelaxed_frag_max_size (fragP);
7081 fragP = fragP->fr_next;
7082 }
7083 if (max_distance <= MAX_IMMED6 && fragP == target_frag)
7084 return TRUE;
e0001a05
NC
7085 return FALSE;
7086}
7087
7088
43cd72b9 7089static void
7fa3d080 7090xtensa_mark_zcl_first_insns (void)
43cd72b9
BW
7091{
7092 frchainS *frchP;
c9049d30 7093 asection *s;
43cd72b9 7094
c9049d30
AM
7095 for (s = stdoutput->sections; s; s = s->next)
7096 for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next)
7097 {
7098 fragS *fragP;
7099 /* Walk over all of the fragments in a subsection. */
7100 for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next)
7101 {
7102 if (fragP->fr_type == rs_machine_dependent
7103 && (fragP->fr_subtype == RELAX_ALIGN_NEXT_OPCODE
7104 || fragP->fr_subtype == RELAX_CHECK_ALIGN_NEXT_OPCODE))
7105 {
7106 /* Find the loop frag. */
7107 fragS *targ_frag = next_non_empty_frag (fragP);
7108 /* Find the first insn frag. */
7109 targ_frag = next_non_empty_frag (targ_frag);
7110
7111 /* Of course, sometimes (mostly for toy test cases) a
7112 zero-cost loop instruction is the last in a section. */
7113 if (targ_frag)
7114 {
7115 targ_frag->tc_frag_data.is_first_loop_insn = TRUE;
7116 /* Do not widen a frag that is the first instruction of a
7117 zero-cost loop. It makes that loop harder to align. */
7118 if (targ_frag->fr_type == rs_machine_dependent
7119 && targ_frag->fr_subtype == RELAX_SLOTS
7120 && (targ_frag->tc_frag_data.slot_subtypes[0]
7121 == RELAX_NARROW))
7122 {
7123 if (targ_frag->tc_frag_data.is_aligning_branch)
7124 targ_frag->tc_frag_data.slot_subtypes[0] = RELAX_IMMED;
7125 else
7126 {
7127 frag_wane (targ_frag);
7128 targ_frag->tc_frag_data.slot_subtypes[0] = 0;
7129 }
7130 }
7131 }
7132 if (fragP->fr_subtype == RELAX_CHECK_ALIGN_NEXT_OPCODE)
7133 frag_wane (fragP);
7134 }
7135 }
7136 }
43cd72b9
BW
7137}
7138
7139
e0001a05
NC
7140/* Re-process all of the fragments looking to convert all of the
7141 RELAX_ADD_NOP_IF_A0_B_RETW. If the next instruction is a
7142 conditional branch or a retw/retw.n, convert this frag to one that
7143 will generate a NOP. In any case close it off with a .fill 0. */
7144
7fa3d080
BW
7145static bfd_boolean next_instrs_are_b_retw (fragS *);
7146
e0001a05 7147static void
7fa3d080 7148xtensa_fix_a0_b_retw_frags (void)
e0001a05
NC
7149{
7150 frchainS *frchP;
c9049d30 7151 asection *s;
e0001a05
NC
7152
7153 /* When this routine is called, all of the subsections are still intact
7154 so we walk over subsections instead of sections. */
c9049d30
AM
7155 for (s = stdoutput->sections; s; s = s->next)
7156 for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next)
7157 {
7158 fragS *fragP;
e0001a05 7159
c9049d30
AM
7160 /* Walk over all of the fragments in a subsection. */
7161 for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next)
7162 {
7163 if (fragP->fr_type == rs_machine_dependent
7164 && fragP->fr_subtype == RELAX_ADD_NOP_IF_A0_B_RETW)
7165 {
7166 if (next_instrs_are_b_retw (fragP))
7167 {
7168 if (fragP->tc_frag_data.is_no_transform)
7169 as_bad (_("instruction sequence (write a0, branch, retw) may trigger hardware errata"));
7170 else
7171 relax_frag_add_nop (fragP);
7172 }
7173 frag_wane (fragP);
7174 }
7175 }
7176 }
e0001a05
NC
7177}
7178
7179
7fa3d080
BW
7180static bfd_boolean
7181next_instrs_are_b_retw (fragS *fragP)
e0001a05
NC
7182{
7183 xtensa_opcode opcode;
43cd72b9 7184 xtensa_format fmt;
e0001a05
NC
7185 const fragS *next_fragP = next_non_empty_frag (fragP);
7186 static xtensa_insnbuf insnbuf = NULL;
43cd72b9 7187 static xtensa_insnbuf slotbuf = NULL;
e0001a05
NC
7188 xtensa_isa isa = xtensa_default_isa;
7189 int offset = 0;
43cd72b9
BW
7190 int slot;
7191 bfd_boolean branch_seen = FALSE;
e0001a05
NC
7192
7193 if (!insnbuf)
43cd72b9
BW
7194 {
7195 insnbuf = xtensa_insnbuf_alloc (isa);
7196 slotbuf = xtensa_insnbuf_alloc (isa);
7197 }
e0001a05
NC
7198
7199 if (next_fragP == NULL)
7200 return FALSE;
7201
7202 /* Check for the conditional branch. */
d77b99c9
BW
7203 xtensa_insnbuf_from_chars
7204 (isa, insnbuf, (unsigned char *) &next_fragP->fr_literal[offset], 0);
43cd72b9
BW
7205 fmt = xtensa_format_decode (isa, insnbuf);
7206 if (fmt == XTENSA_UNDEFINED)
7207 return FALSE;
7208
7209 for (slot = 0; slot < xtensa_format_num_slots (isa, fmt); slot++)
7210 {
7211 xtensa_format_get_slot (isa, fmt, slot, insnbuf, slotbuf);
7212 opcode = xtensa_opcode_decode (isa, fmt, slot, slotbuf);
7213
7214 branch_seen = (branch_seen
7215 || xtensa_opcode_is_branch (isa, opcode) == 1);
7216 }
e0001a05 7217
43cd72b9 7218 if (!branch_seen)
e0001a05
NC
7219 return FALSE;
7220
43cd72b9 7221 offset += xtensa_format_length (isa, fmt);
e0001a05
NC
7222 if (offset == next_fragP->fr_fix)
7223 {
7224 next_fragP = next_non_empty_frag (next_fragP);
7225 offset = 0;
7226 }
43cd72b9 7227
e0001a05
NC
7228 if (next_fragP == NULL)
7229 return FALSE;
7230
7231 /* Check for the retw/retw.n. */
d77b99c9
BW
7232 xtensa_insnbuf_from_chars
7233 (isa, insnbuf, (unsigned char *) &next_fragP->fr_literal[offset], 0);
43cd72b9
BW
7234 fmt = xtensa_format_decode (isa, insnbuf);
7235
7236 /* Because RETW[.N] is not bundleable, a VLIW bundle here means that we
7237 have no problems. */
7238 if (fmt == XTENSA_UNDEFINED
7239 || xtensa_format_num_slots (isa, fmt) != 1)
7240 return FALSE;
7241
7242 xtensa_format_get_slot (isa, fmt, 0, insnbuf, slotbuf);
7243 opcode = xtensa_opcode_decode (isa, fmt, 0, slotbuf);
e0001a05 7244
b08b5071 7245 if (opcode == xtensa_retw_opcode || opcode == xtensa_retw_n_opcode)
e0001a05 7246 return TRUE;
43cd72b9 7247
e0001a05
NC
7248 return FALSE;
7249}
7250
7251
7252/* Re-process all of the fragments looking to convert all of the
7253 RELAX_ADD_NOP_IF_PRE_LOOP_END. If there is one instruction and a
7254 loop end label, convert this frag to one that will generate a NOP.
7255 In any case close it off with a .fill 0. */
7256
7fa3d080
BW
7257static bfd_boolean next_instr_is_loop_end (fragS *);
7258
e0001a05 7259static void
7fa3d080 7260xtensa_fix_b_j_loop_end_frags (void)
e0001a05
NC
7261{
7262 frchainS *frchP;
c9049d30 7263 asection *s;
e0001a05
NC
7264
7265 /* When this routine is called, all of the subsections are still intact
7266 so we walk over subsections instead of sections. */
c9049d30
AM
7267 for (s = stdoutput->sections; s; s = s->next)
7268 for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next)
7269 {
7270 fragS *fragP;
e0001a05 7271
c9049d30
AM
7272 /* Walk over all of the fragments in a subsection. */
7273 for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next)
7274 {
7275 if (fragP->fr_type == rs_machine_dependent
7276 && fragP->fr_subtype == RELAX_ADD_NOP_IF_PRE_LOOP_END)
7277 {
7278 if (next_instr_is_loop_end (fragP))
7279 {
7280 if (fragP->tc_frag_data.is_no_transform)
7281 as_bad (_("branching or jumping to a loop end may trigger hardware errata"));
7282 else
7283 relax_frag_add_nop (fragP);
7284 }
7285 frag_wane (fragP);
7286 }
7287 }
7288 }
e0001a05
NC
7289}
7290
7291
7fa3d080
BW
7292static bfd_boolean
7293next_instr_is_loop_end (fragS *fragP)
e0001a05
NC
7294{
7295 const fragS *next_fragP;
7296
7297 if (next_frag_is_loop_target (fragP))
7298 return FALSE;
7299
7300 next_fragP = next_non_empty_frag (fragP);
7301 if (next_fragP == NULL)
7302 return FALSE;
7303
7304 if (!next_frag_is_loop_target (next_fragP))
7305 return FALSE;
7306
7307 /* If the size is >= 3 then there is more than one instruction here.
7308 The hardware bug will not fire. */
7309 if (next_fragP->fr_fix > 3)
7310 return FALSE;
7311
7312 return TRUE;
7313}
7314
7315
7316/* Re-process all of the fragments looking to convert all of the
7317 RELAX_ADD_NOP_IF_CLOSE_LOOP_END. If there is an loop end that is
7318 not MY loop's loop end within 12 bytes, add enough nops here to
7319 make it at least 12 bytes away. In any case close it off with a
7320 .fill 0. */
7321
d77b99c9 7322static offsetT min_bytes_to_other_loop_end
05d58145 7323 (fragS *, fragS *, offsetT);
7fa3d080 7324
e0001a05 7325static void
7fa3d080 7326xtensa_fix_close_loop_end_frags (void)
e0001a05
NC
7327{
7328 frchainS *frchP;
c9049d30 7329 asection *s;
e0001a05
NC
7330
7331 /* When this routine is called, all of the subsections are still intact
7332 so we walk over subsections instead of sections. */
c9049d30
AM
7333 for (s = stdoutput->sections; s; s = s->next)
7334 for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next)
7335 {
7336 fragS *fragP;
e0001a05 7337
c9049d30 7338 fragS *current_target = NULL;
e0001a05 7339
c9049d30
AM
7340 /* Walk over all of the fragments in a subsection. */
7341 for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next)
7342 {
7343 if (fragP->fr_type == rs_machine_dependent
7344 && ((fragP->fr_subtype == RELAX_ALIGN_NEXT_OPCODE)
7345 || (fragP->fr_subtype == RELAX_CHECK_ALIGN_NEXT_OPCODE)))
05d58145 7346 current_target = symbol_get_frag (fragP->fr_symbol);
e0001a05 7347
c9049d30
AM
7348 if (current_target
7349 && fragP->fr_type == rs_machine_dependent
7350 && fragP->fr_subtype == RELAX_ADD_NOP_IF_CLOSE_LOOP_END)
7351 {
7352 offsetT min_bytes;
7353 int bytes_added = 0;
e0001a05
NC
7354
7355#define REQUIRED_LOOP_DIVIDING_BYTES 12
c9049d30
AM
7356 /* Max out at 12. */
7357 min_bytes = min_bytes_to_other_loop_end
7358 (fragP->fr_next, current_target, REQUIRED_LOOP_DIVIDING_BYTES);
7359
7360 if (min_bytes < REQUIRED_LOOP_DIVIDING_BYTES)
7361 {
7362 if (fragP->tc_frag_data.is_no_transform)
7363 as_bad (_("loop end too close to another loop end may trigger hardware errata"));
7364 else
7365 {
7366 while (min_bytes + bytes_added
7367 < REQUIRED_LOOP_DIVIDING_BYTES)
7368 {
7369 int length = 3;
7370
7371 if (fragP->fr_var < length)
7372 as_fatal (_("fr_var %lu < length %d"),
7373 (long) fragP->fr_var, length);
7374 else
7375 {
7376 assemble_nop (length,
7377 fragP->fr_literal + fragP->fr_fix);
7378 fragP->fr_fix += length;
7379 fragP->fr_var -= length;
7380 }
7381 bytes_added += length;
7382 }
7383 }
7384 }
7385 frag_wane (fragP);
7386 }
7387 assert (fragP->fr_type != rs_machine_dependent
7388 || fragP->fr_subtype != RELAX_ADD_NOP_IF_CLOSE_LOOP_END);
7389 }
7390 }
e0001a05
NC
7391}
7392
7393
d77b99c9 7394static offsetT unrelaxed_frag_min_size (fragS *);
7fa3d080 7395
d77b99c9 7396static offsetT
7fa3d080
BW
7397min_bytes_to_other_loop_end (fragS *fragP,
7398 fragS *current_target,
d77b99c9 7399 offsetT max_size)
e0001a05 7400{
d77b99c9 7401 offsetT offset = 0;
e0001a05
NC
7402 fragS *current_fragP;
7403
7404 for (current_fragP = fragP;
7405 current_fragP;
7406 current_fragP = current_fragP->fr_next)
7407 {
7408 if (current_fragP->tc_frag_data.is_loop_target
7409 && current_fragP != current_target)
05d58145 7410 return offset;
e0001a05
NC
7411
7412 offset += unrelaxed_frag_min_size (current_fragP);
7413
05d58145 7414 if (offset >= max_size)
e0001a05
NC
7415 return max_size;
7416 }
7417 return max_size;
7418}
7419
7420
d77b99c9 7421static offsetT
7fa3d080 7422unrelaxed_frag_min_size (fragS *fragP)
e0001a05 7423{
d77b99c9 7424 offsetT size = fragP->fr_fix;
e0001a05 7425
d77b99c9 7426 /* Add fill size. */
e0001a05
NC
7427 if (fragP->fr_type == rs_fill)
7428 size += fragP->fr_offset;
7429
7430 return size;
7431}
7432
7433
d77b99c9 7434static offsetT
7fa3d080 7435unrelaxed_frag_max_size (fragS *fragP)
43cd72b9 7436{
d77b99c9 7437 offsetT size = fragP->fr_fix;
43cd72b9
BW
7438 switch (fragP->fr_type)
7439 {
7440 case 0:
c138bc38 7441 /* Empty frags created by the obstack allocation scheme
43cd72b9
BW
7442 end up with type 0. */
7443 break;
7444 case rs_fill:
7445 case rs_org:
7446 case rs_space:
7447 size += fragP->fr_offset;
7448 break;
7449 case rs_align:
7450 case rs_align_code:
7451 case rs_align_test:
7452 case rs_leb128:
7453 case rs_cfa:
7454 case rs_dwarf2dbg:
7455 /* No further adjustments needed. */
7456 break;
7457 case rs_machine_dependent:
7458 if (fragP->fr_subtype != RELAX_DESIRE_ALIGN)
7459 size += fragP->fr_var;
7460 break;
7461 default:
7462 /* We had darn well better know how big it is. */
7463 assert (0);
7464 break;
7465 }
7466
7467 return size;
7468}
7469
7470
e0001a05
NC
7471/* Re-process all of the fragments looking to convert all
7472 of the RELAX_ADD_NOP_IF_SHORT_LOOP. If:
7473
7474 A)
7475 1) the instruction size count to the loop end label
7476 is too short (<= 2 instructions),
7477 2) loop has a jump or branch in it
7478
7479 or B)
43cd72b9 7480 1) workaround_all_short_loops is TRUE
e0001a05
NC
7481 2) The generating loop was a 'loopgtz' or 'loopnez'
7482 3) the instruction size count to the loop end label is too short
7483 (<= 2 instructions)
7484 then convert this frag (and maybe the next one) to generate a NOP.
7485 In any case close it off with a .fill 0. */
7486
d77b99c9 7487static int count_insns_to_loop_end (fragS *, bfd_boolean, int);
7fa3d080
BW
7488static bfd_boolean branch_before_loop_end (fragS *);
7489
e0001a05 7490static void
7fa3d080 7491xtensa_fix_short_loop_frags (void)
e0001a05
NC
7492{
7493 frchainS *frchP;
c9049d30 7494 asection *s;
e0001a05
NC
7495
7496 /* When this routine is called, all of the subsections are still intact
7497 so we walk over subsections instead of sections. */
c9049d30
AM
7498 for (s = stdoutput->sections; s; s = s->next)
7499 for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next)
7500 {
7501 fragS *fragP;
7502 fragS *current_target = NULL;
7503 xtensa_opcode current_opcode = XTENSA_UNDEFINED;
e0001a05 7504
c9049d30
AM
7505 /* Walk over all of the fragments in a subsection. */
7506 for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next)
7507 {
7508 if (fragP->fr_type == rs_machine_dependent
7509 && ((fragP->fr_subtype == RELAX_ALIGN_NEXT_OPCODE)
7510 || (fragP->fr_subtype == RELAX_CHECK_ALIGN_NEXT_OPCODE)))
7511 {
7512 TInsn t_insn;
7513 fragS *loop_frag = next_non_empty_frag (fragP);
7514 tinsn_from_chars (&t_insn, loop_frag->fr_opcode, 0);
7515 current_target = symbol_get_frag (fragP->fr_symbol);
7516 current_opcode = t_insn.opcode;
7517 assert (xtensa_opcode_is_loop (xtensa_default_isa,
64b607e6 7518 current_opcode) == 1);
c9049d30 7519 }
e0001a05 7520
c9049d30
AM
7521 if (fragP->fr_type == rs_machine_dependent
7522 && fragP->fr_subtype == RELAX_ADD_NOP_IF_SHORT_LOOP)
7523 {
7524 if (count_insns_to_loop_end (fragP->fr_next, TRUE, 3) < 3
7525 && (branch_before_loop_end (fragP->fr_next)
7526 || (workaround_all_short_loops
7527 && current_opcode != XTENSA_UNDEFINED
7528 && current_opcode != xtensa_loop_opcode)))
7529 {
7530 if (fragP->tc_frag_data.is_no_transform)
7531 as_bad (_("loop containing less than three instructions may trigger hardware errata"));
7532 else
7533 relax_frag_add_nop (fragP);
7534 }
7535 frag_wane (fragP);
7536 }
7537 }
7538 }
e0001a05
NC
7539}
7540
7541
d77b99c9 7542static int unrelaxed_frag_min_insn_count (fragS *);
7fa3d080 7543
d77b99c9 7544static int
7fa3d080
BW
7545count_insns_to_loop_end (fragS *base_fragP,
7546 bfd_boolean count_relax_add,
d77b99c9 7547 int max_count)
e0001a05
NC
7548{
7549 fragS *fragP = NULL;
d77b99c9 7550 int insn_count = 0;
e0001a05
NC
7551
7552 fragP = base_fragP;
7553
7554 for (; fragP && !fragP->tc_frag_data.is_loop_target; fragP = fragP->fr_next)
7555 {
7556 insn_count += unrelaxed_frag_min_insn_count (fragP);
7557 if (insn_count >= max_count)
7558 return max_count;
7559
7560 if (count_relax_add)
7561 {
7562 if (fragP->fr_type == rs_machine_dependent
7563 && fragP->fr_subtype == RELAX_ADD_NOP_IF_SHORT_LOOP)
7564 {
7565 /* In order to add the appropriate number of
7566 NOPs, we count an instruction for downstream
7567 occurrences. */
7568 insn_count++;
7569 if (insn_count >= max_count)
7570 return max_count;
7571 }
7572 }
7573 }
7574 return insn_count;
7575}
7576
7577
d77b99c9 7578static int
7fa3d080 7579unrelaxed_frag_min_insn_count (fragS *fragP)
e0001a05 7580{
43cd72b9
BW
7581 xtensa_isa isa = xtensa_default_isa;
7582 static xtensa_insnbuf insnbuf = NULL;
d77b99c9 7583 int insn_count = 0;
e0001a05
NC
7584 int offset = 0;
7585
7586 if (!fragP->tc_frag_data.is_insn)
7587 return insn_count;
7588
43cd72b9
BW
7589 if (!insnbuf)
7590 insnbuf = xtensa_insnbuf_alloc (isa);
7591
e0001a05
NC
7592 /* Decode the fixed instructions. */
7593 while (offset < fragP->fr_fix)
7594 {
43cd72b9
BW
7595 xtensa_format fmt;
7596
d77b99c9
BW
7597 xtensa_insnbuf_from_chars
7598 (isa, insnbuf, (unsigned char *) fragP->fr_literal + offset, 0);
43cd72b9
BW
7599 fmt = xtensa_format_decode (isa, insnbuf);
7600
7601 if (fmt == XTENSA_UNDEFINED)
e0001a05
NC
7602 {
7603 as_fatal (_("undecodable instruction in instruction frag"));
7604 return insn_count;
7605 }
43cd72b9 7606 offset += xtensa_format_length (isa, fmt);
e0001a05
NC
7607 insn_count++;
7608 }
7609
7610 return insn_count;
7611}
7612
7613
7fa3d080
BW
7614static bfd_boolean unrelaxed_frag_has_b_j (fragS *);
7615
43cd72b9 7616static bfd_boolean
7fa3d080 7617branch_before_loop_end (fragS *base_fragP)
e0001a05
NC
7618{
7619 fragS *fragP;
7620
7621 for (fragP = base_fragP;
7622 fragP && !fragP->tc_frag_data.is_loop_target;
7623 fragP = fragP->fr_next)
7624 {
7625 if (unrelaxed_frag_has_b_j (fragP))
7626 return TRUE;
7627 }
7628 return FALSE;
7629}
7630
7631
43cd72b9 7632static bfd_boolean
7fa3d080 7633unrelaxed_frag_has_b_j (fragS *fragP)
e0001a05 7634{
43cd72b9
BW
7635 static xtensa_insnbuf insnbuf = NULL;
7636 xtensa_isa isa = xtensa_default_isa;
e0001a05
NC
7637 int offset = 0;
7638
7639 if (!fragP->tc_frag_data.is_insn)
7640 return FALSE;
7641
43cd72b9
BW
7642 if (!insnbuf)
7643 insnbuf = xtensa_insnbuf_alloc (isa);
7644
e0001a05
NC
7645 /* Decode the fixed instructions. */
7646 while (offset < fragP->fr_fix)
7647 {
43cd72b9
BW
7648 xtensa_format fmt;
7649 int slot;
7650
d77b99c9
BW
7651 xtensa_insnbuf_from_chars
7652 (isa, insnbuf, (unsigned char *) fragP->fr_literal + offset, 0);
43cd72b9
BW
7653 fmt = xtensa_format_decode (isa, insnbuf);
7654 if (fmt == XTENSA_UNDEFINED)
7655 return FALSE;
7656
7657 for (slot = 0; slot < xtensa_format_num_slots (isa, fmt); slot++)
e0001a05 7658 {
43cd72b9
BW
7659 xtensa_opcode opcode =
7660 get_opcode_from_buf (fragP->fr_literal + offset, slot);
7661 if (xtensa_opcode_is_branch (isa, opcode) == 1
7662 || xtensa_opcode_is_jump (isa, opcode) == 1)
7663 return TRUE;
e0001a05 7664 }
43cd72b9 7665 offset += xtensa_format_length (isa, fmt);
e0001a05
NC
7666 }
7667 return FALSE;
7668}
7669
7670
7671/* Checks to be made after initial assembly but before relaxation. */
7672
7fa3d080
BW
7673static bfd_boolean is_empty_loop (const TInsn *, fragS *);
7674static bfd_boolean is_local_forward_loop (const TInsn *, fragS *);
7675
e0001a05 7676static void
7fa3d080 7677xtensa_sanity_check (void)
e0001a05
NC
7678{
7679 char *file_name;
d77b99c9 7680 unsigned line;
e0001a05 7681 frchainS *frchP;
c9049d30 7682 asection *s;
e0001a05
NC
7683
7684 as_where (&file_name, &line);
c9049d30
AM
7685 for (s = stdoutput->sections; s; s = s->next)
7686 for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next)
7687 {
7688 fragS *fragP;
e0001a05 7689
c9049d30
AM
7690 /* Walk over all of the fragments in a subsection. */
7691 for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next)
7692 {
c9049d30 7693 if (fragP->fr_type == rs_machine_dependent
a7284bf1
BW
7694 && fragP->fr_subtype == RELAX_SLOTS
7695 && fragP->tc_frag_data.slot_subtypes[0] == RELAX_IMMED)
c9049d30
AM
7696 {
7697 static xtensa_insnbuf insnbuf = NULL;
7698 TInsn t_insn;
7699
7700 if (fragP->fr_opcode != NULL)
7701 {
7702 if (!insnbuf)
7703 insnbuf = xtensa_insnbuf_alloc (xtensa_default_isa);
7704 tinsn_from_chars (&t_insn, fragP->fr_opcode, 0);
7705 tinsn_immed_from_frag (&t_insn, fragP, 0);
7706
7707 if (xtensa_opcode_is_loop (xtensa_default_isa,
7708 t_insn.opcode) == 1)
7709 {
7710 if (is_empty_loop (&t_insn, fragP))
7711 {
7712 new_logical_line (fragP->fr_file, fragP->fr_line);
7713 as_bad (_("invalid empty loop"));
7714 }
7715 if (!is_local_forward_loop (&t_insn, fragP))
7716 {
7717 new_logical_line (fragP->fr_file, fragP->fr_line);
7718 as_bad (_("loop target does not follow "
7719 "loop instruction in section"));
7720 }
7721 }
7722 }
7723 }
7724 }
7725 }
e0001a05
NC
7726 new_logical_line (file_name, line);
7727}
7728
7729
7730#define LOOP_IMMED_OPN 1
7731
43cd72b9 7732/* Return TRUE if the loop target is the next non-zero fragment. */
e0001a05 7733
7fa3d080
BW
7734static bfd_boolean
7735is_empty_loop (const TInsn *insn, fragS *fragP)
e0001a05
NC
7736{
7737 const expressionS *expr;
7738 symbolS *symbolP;
7739 fragS *next_fragP;
7740
7741 if (insn->insn_type != ITYPE_INSN)
7742 return FALSE;
7743
43cd72b9 7744 if (xtensa_opcode_is_loop (xtensa_default_isa, insn->opcode) != 1)
e0001a05
NC
7745 return FALSE;
7746
7747 if (insn->ntok <= LOOP_IMMED_OPN)
7748 return FALSE;
7749
7750 expr = &insn->tok[LOOP_IMMED_OPN];
7751
7752 if (expr->X_op != O_symbol)
7753 return FALSE;
7754
7755 symbolP = expr->X_add_symbol;
7756 if (!symbolP)
7757 return FALSE;
7758
7759 if (symbol_get_frag (symbolP) == NULL)
7760 return FALSE;
7761
7762 if (S_GET_VALUE (symbolP) != 0)
7763 return FALSE;
7764
7765 /* Walk through the zero-size fragments from this one. If we find
7766 the target fragment, then this is a zero-size loop. */
43cd72b9 7767
e0001a05
NC
7768 for (next_fragP = fragP->fr_next;
7769 next_fragP != NULL;
7770 next_fragP = next_fragP->fr_next)
7771 {
7772 if (next_fragP == symbol_get_frag (symbolP))
7773 return TRUE;
7774 if (next_fragP->fr_fix != 0)
7775 return FALSE;
7776 }
7777 return FALSE;
7778}
7779
7780
7fa3d080
BW
7781static bfd_boolean
7782is_local_forward_loop (const TInsn *insn, fragS *fragP)
e0001a05
NC
7783{
7784 const expressionS *expr;
7785 symbolS *symbolP;
7786 fragS *next_fragP;
7787
7788 if (insn->insn_type != ITYPE_INSN)
7789 return FALSE;
7790
64b607e6 7791 if (xtensa_opcode_is_loop (xtensa_default_isa, insn->opcode) != 1)
e0001a05
NC
7792 return FALSE;
7793
7794 if (insn->ntok <= LOOP_IMMED_OPN)
7795 return FALSE;
7796
7797 expr = &insn->tok[LOOP_IMMED_OPN];
7798
7799 if (expr->X_op != O_symbol)
7800 return FALSE;
7801
7802 symbolP = expr->X_add_symbol;
7803 if (!symbolP)
7804 return FALSE;
7805
7806 if (symbol_get_frag (symbolP) == NULL)
7807 return FALSE;
7808
7809 /* Walk through fragments until we find the target.
7810 If we do not find the target, then this is an invalid loop. */
43cd72b9 7811
e0001a05
NC
7812 for (next_fragP = fragP->fr_next;
7813 next_fragP != NULL;
7814 next_fragP = next_fragP->fr_next)
43cd72b9
BW
7815 {
7816 if (next_fragP == symbol_get_frag (symbolP))
7817 return TRUE;
7818 }
e0001a05
NC
7819
7820 return FALSE;
7821}
7822
2caa7ca0
BW
7823
7824#define XTINFO_NAME "Xtensa_Info"
7825#define XTINFO_NAMESZ 12
7826#define XTINFO_TYPE 1
7827
7828static void
7829xtensa_add_config_info (void)
7830{
7831 asection *info_sec;
7832 char *data, *p;
7833 int sz;
7834
7835 info_sec = subseg_new (".xtensa.info", 0);
7836 bfd_set_section_flags (stdoutput, info_sec, SEC_HAS_CONTENTS | SEC_READONLY);
7837
7838 data = xmalloc (100);
7839 sprintf (data, "USE_ABSOLUTE_LITERALS=%d\nABI=%d\n",
7840 XSHAL_USE_ABSOLUTE_LITERALS, XSHAL_ABI);
7841 sz = strlen (data) + 1;
7842
7843 /* Add enough null terminators to pad to a word boundary. */
7844 do
7845 data[sz++] = 0;
7846 while ((sz & 3) != 0);
7847
7848 /* Follow the standard note section layout:
7849 First write the length of the name string. */
7850 p = frag_more (4);
7851 md_number_to_chars (p, (valueT) XTINFO_NAMESZ, 4);
7852
7853 /* Next comes the length of the "descriptor", i.e., the actual data. */
7854 p = frag_more (4);
7855 md_number_to_chars (p, (valueT) sz, 4);
7856
7857 /* Write the note type. */
7858 p = frag_more (4);
7859 md_number_to_chars (p, (valueT) XTINFO_TYPE, 4);
7860
7861 /* Write the name field. */
7862 p = frag_more (XTINFO_NAMESZ);
7863 memcpy (p, XTINFO_NAME, XTINFO_NAMESZ);
7864
7865 /* Finally, write the descriptor. */
7866 p = frag_more (sz);
7867 memcpy (p, data, sz);
7868
7869 free (data);
7870}
7871
e0001a05
NC
7872\f
7873/* Alignment Functions. */
7874
d77b99c9
BW
7875static int
7876get_text_align_power (unsigned target_size)
e0001a05 7877{
03aaa593
BW
7878 if (target_size <= 4)
7879 return 2;
7880 assert (target_size == 8);
7881 return 3;
e0001a05
NC
7882}
7883
7884
d77b99c9 7885static int
7fa3d080
BW
7886get_text_align_max_fill_size (int align_pow,
7887 bfd_boolean use_nops,
7888 bfd_boolean use_no_density)
e0001a05
NC
7889{
7890 if (!use_nops)
7891 return (1 << align_pow);
7892 if (use_no_density)
7893 return 3 * (1 << align_pow);
7894
7895 return 1 + (1 << align_pow);
7896}
7897
7898
d77b99c9
BW
7899/* Calculate the minimum bytes of fill needed at "address" to align a
7900 target instruction of size "target_size" so that it does not cross a
7901 power-of-two boundary specified by "align_pow". If "use_nops" is FALSE,
7902 the fill can be an arbitrary number of bytes. Otherwise, the space must
7903 be filled by NOP instructions. */
e0001a05 7904
d77b99c9 7905static int
7fa3d080
BW
7906get_text_align_fill_size (addressT address,
7907 int align_pow,
7908 int target_size,
7909 bfd_boolean use_nops,
7910 bfd_boolean use_no_density)
e0001a05 7911{
d77b99c9
BW
7912 addressT alignment, fill, fill_limit, fill_step;
7913 bfd_boolean skip_one = FALSE;
e0001a05 7914
d77b99c9
BW
7915 alignment = (1 << align_pow);
7916 assert (target_size > 0 && alignment >= (addressT) target_size);
c138bc38 7917
e0001a05
NC
7918 if (!use_nops)
7919 {
d77b99c9
BW
7920 fill_limit = alignment;
7921 fill_step = 1;
e0001a05 7922 }
d77b99c9 7923 else if (!use_no_density)
e0001a05 7924 {
d77b99c9
BW
7925 /* Combine 2- and 3-byte NOPs to fill anything larger than one. */
7926 fill_limit = alignment * 2;
7927 fill_step = 1;
7928 skip_one = TRUE;
e0001a05
NC
7929 }
7930 else
7931 {
d77b99c9
BW
7932 /* Fill with 3-byte NOPs -- can only fill multiples of 3. */
7933 fill_limit = alignment * 3;
7934 fill_step = 3;
7935 }
e0001a05 7936
d77b99c9
BW
7937 /* Try all fill sizes until finding one that works. */
7938 for (fill = 0; fill < fill_limit; fill += fill_step)
7939 {
7940 if (skip_one && fill == 1)
7941 continue;
7942 if ((address + fill) >> align_pow
7943 == (address + fill + target_size - 1) >> align_pow)
7944 return fill;
e0001a05
NC
7945 }
7946 assert (0);
7947 return 0;
7948}
7949
7950
664df4e4
BW
7951static int
7952branch_align_power (segT sec)
7953{
7954 /* If the Xtensa processor has a fetch width of 8 bytes, and the section
7955 is aligned to at least an 8-byte boundary, then a branch target need
7956 only fit within an 8-byte aligned block of memory to avoid a stall.
7957 Otherwise, try to fit branch targets within 4-byte aligned blocks
7958 (which may be insufficient, e.g., if the section has no alignment, but
7959 it's good enough). */
7960 if (xtensa_fetch_width == 8)
7961 {
7962 if (get_recorded_alignment (sec) >= 3)
7963 return 3;
7964 }
7965 else
7966 assert (xtensa_fetch_width == 4);
7967
7968 return 2;
7969}
7970
7971
e0001a05
NC
7972/* This will assert if it is not possible. */
7973
d77b99c9
BW
7974static int
7975get_text_align_nop_count (offsetT fill_size, bfd_boolean use_no_density)
e0001a05 7976{
d77b99c9
BW
7977 int count = 0;
7978
e0001a05
NC
7979 if (use_no_density)
7980 {
7981 assert (fill_size % 3 == 0);
7982 return (fill_size / 3);
7983 }
7984
7985 assert (fill_size != 1); /* Bad argument. */
7986
7987 while (fill_size > 1)
7988 {
d77b99c9 7989 int insn_size = 3;
e0001a05
NC
7990 if (fill_size == 2 || fill_size == 4)
7991 insn_size = 2;
7992 fill_size -= insn_size;
7993 count++;
7994 }
7995 assert (fill_size != 1); /* Bad algorithm. */
7996 return count;
7997}
7998
7999
d77b99c9
BW
8000static int
8001get_text_align_nth_nop_size (offsetT fill_size,
8002 int n,
7fa3d080 8003 bfd_boolean use_no_density)
e0001a05 8004{
d77b99c9 8005 int count = 0;
e0001a05
NC
8006
8007 if (use_no_density)
8008 return 3;
8009
d77b99c9
BW
8010 assert (fill_size != 1); /* Bad argument. */
8011
e0001a05
NC
8012 while (fill_size > 1)
8013 {
d77b99c9 8014 int insn_size = 3;
e0001a05
NC
8015 if (fill_size == 2 || fill_size == 4)
8016 insn_size = 2;
8017 fill_size -= insn_size;
8018 count++;
8019 if (n + 1 == count)
8020 return insn_size;
8021 }
8022 assert (0);
8023 return 0;
8024}
8025
8026
8027/* For the given fragment, find the appropriate address
8028 for it to begin at if we are using NOPs to align it. */
8029
8030static addressT
7fa3d080 8031get_noop_aligned_address (fragS *fragP, addressT address)
e0001a05 8032{
43cd72b9
BW
8033 /* The rule is: get next fragment's FIRST instruction. Find
8034 the smallest number of bytes that need to be added to
8035 ensure that the next fragment's FIRST instruction will fit
8036 in a single word.
c138bc38 8037
43cd72b9
BW
8038 E.G., 2 bytes : 0, 1, 2 mod 4
8039 3 bytes: 0, 1 mod 4
c138bc38 8040
43cd72b9
BW
8041 If the FIRST instruction MIGHT be relaxed,
8042 assume that it will become a 3-byte instruction.
c138bc38 8043
43cd72b9
BW
8044 Note again here that LOOP instructions are not bundleable,
8045 and this relaxation only applies to LOOP opcodes. */
c138bc38 8046
d77b99c9 8047 int fill_size = 0;
43cd72b9
BW
8048 int first_insn_size;
8049 int loop_insn_size;
8050 addressT pre_opcode_bytes;
d77b99c9 8051 int align_power;
43cd72b9
BW
8052 fragS *first_insn;
8053 xtensa_opcode opcode;
8054 bfd_boolean is_loop;
e0001a05 8055
43cd72b9
BW
8056 assert (fragP->fr_type == rs_machine_dependent);
8057 assert (fragP->fr_subtype == RELAX_ALIGN_NEXT_OPCODE);
e0001a05 8058
43cd72b9
BW
8059 /* Find the loop frag. */
8060 first_insn = next_non_empty_frag (fragP);
8061 /* Now find the first insn frag. */
8062 first_insn = next_non_empty_frag (first_insn);
e0001a05 8063
43cd72b9
BW
8064 is_loop = next_frag_opcode_is_loop (fragP, &opcode);
8065 assert (is_loop);
8066 loop_insn_size = xg_get_single_size (opcode);
e0001a05 8067
43cd72b9
BW
8068 pre_opcode_bytes = next_frag_pre_opcode_bytes (fragP);
8069 pre_opcode_bytes += loop_insn_size;
e0001a05 8070
43cd72b9
BW
8071 /* For loops, the alignment depends on the size of the
8072 instruction following the loop, not the LOOP instruction. */
e0001a05 8073
43cd72b9 8074 if (first_insn == NULL)
03aaa593
BW
8075 first_insn_size = xtensa_fetch_width;
8076 else
8077 first_insn_size = get_loop_align_size (frag_format_size (first_insn));
e0001a05 8078
43cd72b9 8079 /* If it was 8, then we'll need a larger alignment for the section. */
d77b99c9
BW
8080 align_power = get_text_align_power (first_insn_size);
8081 record_alignment (now_seg, align_power);
c138bc38 8082
43cd72b9 8083 fill_size = get_text_align_fill_size
d77b99c9
BW
8084 (address + pre_opcode_bytes, align_power, first_insn_size, TRUE,
8085 fragP->tc_frag_data.is_no_density);
e0001a05
NC
8086
8087 return address + fill_size;
8088}
8089
8090
43cd72b9
BW
8091/* 3 mechanisms for relaxing an alignment:
8092
8093 Align to a power of 2.
8094 Align so the next fragment's instruction does not cross a word boundary.
8095 Align the current instruction so that if the next instruction
8096 were 3 bytes, it would not cross a word boundary.
8097
e0001a05
NC
8098 We can align with:
8099
43cd72b9
BW
8100 zeros - This is easy; always insert zeros.
8101 nops - 3-byte and 2-byte instructions
8102 2 - 2-byte nop
8103 3 - 3-byte nop
8104 4 - 2 2-byte nops
8105 >=5 : 3-byte instruction + fn (n-3)
e0001a05
NC
8106 widening - widen previous instructions. */
8107
d77b99c9
BW
8108static offsetT
8109get_aligned_diff (fragS *fragP, addressT address, offsetT *max_diff)
e0001a05 8110{
43cd72b9
BW
8111 addressT target_address, loop_insn_offset;
8112 int target_size;
8113 xtensa_opcode loop_opcode;
8114 bfd_boolean is_loop;
d77b99c9
BW
8115 int align_power;
8116 offsetT opt_diff;
5f9084e9 8117 offsetT branch_align;
e0001a05 8118
43cd72b9
BW
8119 assert (fragP->fr_type == rs_machine_dependent);
8120 switch (fragP->fr_subtype)
e0001a05 8121 {
43cd72b9
BW
8122 case RELAX_DESIRE_ALIGN:
8123 target_size = next_frag_format_size (fragP);
8124 if (target_size == XTENSA_UNDEFINED)
8125 target_size = 3;
664df4e4
BW
8126 align_power = branch_align_power (now_seg);
8127 branch_align = 1 << align_power;
0e5cd789
BW
8128 /* Don't count on the section alignment being as large as the target. */
8129 if (target_size > branch_align)
8130 target_size = branch_align;
d77b99c9 8131 opt_diff = get_text_align_fill_size (address, align_power,
43cd72b9
BW
8132 target_size, FALSE, FALSE);
8133
664df4e4
BW
8134 *max_diff = (opt_diff + branch_align
8135 - (target_size + ((address + opt_diff) % branch_align)));
43cd72b9
BW
8136 assert (*max_diff >= opt_diff);
8137 return opt_diff;
e0001a05 8138
43cd72b9 8139 case RELAX_ALIGN_NEXT_OPCODE:
03aaa593 8140 target_size = get_loop_align_size (next_frag_format_size (fragP));
43cd72b9
BW
8141 loop_insn_offset = 0;
8142 is_loop = next_frag_opcode_is_loop (fragP, &loop_opcode);
8143 assert (is_loop);
8144
8145 /* If the loop has been expanded then the LOOP instruction
8146 could be at an offset from this fragment. */
8147 if (next_non_empty_frag(fragP)->tc_frag_data.slot_subtypes[0]
8148 != RELAX_IMMED)
8149 loop_insn_offset = get_expanded_loop_offset (loop_opcode);
8150
43cd72b9
BW
8151 /* In an ideal world, which is what we are shooting for here,
8152 we wouldn't need to use any NOPs immediately prior to the
8153 LOOP instruction. If this approach fails, relax_frag_loop_align
8154 will call get_noop_aligned_address. */
8155 target_address =
8156 address + loop_insn_offset + xg_get_single_size (loop_opcode);
d77b99c9
BW
8157 align_power = get_text_align_power (target_size),
8158 opt_diff = get_text_align_fill_size (target_address, align_power,
43cd72b9
BW
8159 target_size, FALSE, FALSE);
8160
8161 *max_diff = xtensa_fetch_width
8162 - ((target_address + opt_diff) % xtensa_fetch_width)
8163 - target_size + opt_diff;
8164 assert (*max_diff >= opt_diff);
8165 return opt_diff;
e0001a05 8166
43cd72b9
BW
8167 default:
8168 break;
e0001a05 8169 }
43cd72b9
BW
8170 assert (0);
8171 return 0;
e0001a05
NC
8172}
8173
8174\f
8175/* md_relax_frag Hook and Helper Functions. */
8176
7fa3d080
BW
8177static long relax_frag_loop_align (fragS *, long);
8178static long relax_frag_for_align (fragS *, long);
8179static long relax_frag_immed
8180 (segT, fragS *, long, int, xtensa_format, int, int *, bfd_boolean);
8181
8182
e0001a05
NC
8183/* Return the number of bytes added to this fragment, given that the
8184 input has been stretched already by "stretch". */
8185
8186long
7fa3d080 8187xtensa_relax_frag (fragS *fragP, long stretch, int *stretched_p)
e0001a05 8188{
43cd72b9 8189 xtensa_isa isa = xtensa_default_isa;
e0001a05
NC
8190 int unreported = fragP->tc_frag_data.unreported_expansion;
8191 long new_stretch = 0;
8192 char *file_name;
d77b99c9
BW
8193 unsigned line;
8194 int lit_size;
43cd72b9
BW
8195 static xtensa_insnbuf vbuf = NULL;
8196 int slot, num_slots;
8197 xtensa_format fmt;
e0001a05
NC
8198
8199 as_where (&file_name, &line);
8200 new_logical_line (fragP->fr_file, fragP->fr_line);
8201
8202 fragP->tc_frag_data.unreported_expansion = 0;
8203
8204 switch (fragP->fr_subtype)
8205 {
8206 case RELAX_ALIGN_NEXT_OPCODE:
8207 /* Always convert. */
43cd72b9
BW
8208 if (fragP->tc_frag_data.relax_seen)
8209 new_stretch = relax_frag_loop_align (fragP, stretch);
e0001a05
NC
8210 break;
8211
8212 case RELAX_LOOP_END:
8213 /* Do nothing. */
8214 break;
8215
8216 case RELAX_LOOP_END_ADD_NOP:
8217 /* Add a NOP and switch to .fill 0. */
8218 new_stretch = relax_frag_add_nop (fragP);
43cd72b9 8219 frag_wane (fragP);
e0001a05
NC
8220 break;
8221
8222 case RELAX_DESIRE_ALIGN:
43cd72b9 8223 /* Do nothing. The narrowing before this frag will either align
e0001a05
NC
8224 it or not. */
8225 break;
8226
8227 case RELAX_LITERAL:
8228 case RELAX_LITERAL_FINAL:
8229 return 0;
8230
8231 case RELAX_LITERAL_NR:
8232 lit_size = 4;
8233 fragP->fr_subtype = RELAX_LITERAL_FINAL;
8234 assert (unreported == lit_size);
8235 memset (&fragP->fr_literal[fragP->fr_fix], 0, 4);
8236 fragP->fr_var -= lit_size;
8237 fragP->fr_fix += lit_size;
8238 new_stretch = 4;
8239 break;
8240
43cd72b9
BW
8241 case RELAX_SLOTS:
8242 if (vbuf == NULL)
8243 vbuf = xtensa_insnbuf_alloc (isa);
8244
d77b99c9
BW
8245 xtensa_insnbuf_from_chars
8246 (isa, vbuf, (unsigned char *) fragP->fr_opcode, 0);
43cd72b9
BW
8247 fmt = xtensa_format_decode (isa, vbuf);
8248 num_slots = xtensa_format_num_slots (isa, fmt);
e0001a05 8249
43cd72b9
BW
8250 for (slot = 0; slot < num_slots; slot++)
8251 {
8252 switch (fragP->tc_frag_data.slot_subtypes[slot])
8253 {
8254 case RELAX_NARROW:
8255 if (fragP->tc_frag_data.relax_seen)
8256 new_stretch += relax_frag_for_align (fragP, stretch);
8257 break;
8258
8259 case RELAX_IMMED:
8260 case RELAX_IMMED_STEP1:
8261 case RELAX_IMMED_STEP2:
8262 /* Place the immediate. */
8263 new_stretch += relax_frag_immed
8264 (now_seg, fragP, stretch,
8265 fragP->tc_frag_data.slot_subtypes[slot] - RELAX_IMMED,
8266 fmt, slot, stretched_p, FALSE);
8267 break;
8268
8269 default:
8270 /* This is OK; see the note in xg_assemble_vliw_tokens. */
8271 break;
8272 }
8273 }
e0001a05
NC
8274 break;
8275
8276 case RELAX_LITERAL_POOL_BEGIN:
8277 case RELAX_LITERAL_POOL_END:
43cd72b9
BW
8278 case RELAX_MAYBE_UNREACHABLE:
8279 case RELAX_MAYBE_DESIRE_ALIGN:
e0001a05
NC
8280 /* No relaxation required. */
8281 break;
8282
43cd72b9
BW
8283 case RELAX_FILL_NOP:
8284 case RELAX_UNREACHABLE:
8285 if (fragP->tc_frag_data.relax_seen)
8286 new_stretch += relax_frag_for_align (fragP, stretch);
8287 break;
8288
e0001a05
NC
8289 default:
8290 as_bad (_("bad relaxation state"));
8291 }
8292
43cd72b9 8293 /* Tell gas we need another relaxation pass. */
c138bc38 8294 if (! fragP->tc_frag_data.relax_seen)
43cd72b9
BW
8295 {
8296 fragP->tc_frag_data.relax_seen = TRUE;
8297 *stretched_p = 1;
8298 }
8299
e0001a05
NC
8300 new_logical_line (file_name, line);
8301 return new_stretch;
8302}
8303
8304
8305static long
7fa3d080 8306relax_frag_loop_align (fragS *fragP, long stretch)
e0001a05
NC
8307{
8308 addressT old_address, old_next_address, old_size;
8309 addressT new_address, new_next_address, new_size;
8310 addressT growth;
8311
43cd72b9
BW
8312 /* All the frags with relax_frag_for_alignment prior to this one in the
8313 section have been done, hopefully eliminating the need for a NOP here.
8314 But, this will put it in if necessary. */
e0001a05
NC
8315
8316 /* Calculate the old address of this fragment and the next fragment. */
8317 old_address = fragP->fr_address - stretch;
8318 old_next_address = (fragP->fr_address - stretch + fragP->fr_fix +
43cd72b9 8319 fragP->tc_frag_data.text_expansion[0]);
e0001a05
NC
8320 old_size = old_next_address - old_address;
8321
8322 /* Calculate the new address of this fragment and the next fragment. */
8323 new_address = fragP->fr_address;
8324 new_next_address =
8325 get_noop_aligned_address (fragP, fragP->fr_address + fragP->fr_fix);
8326 new_size = new_next_address - new_address;
8327
8328 growth = new_size - old_size;
8329
8330 /* Fix up the text_expansion field and return the new growth. */
43cd72b9 8331 fragP->tc_frag_data.text_expansion[0] += growth;
e0001a05
NC
8332 return growth;
8333}
8334
8335
43cd72b9 8336/* Add a NOP instruction. */
e0001a05
NC
8337
8338static long
7fa3d080 8339relax_frag_add_nop (fragS *fragP)
e0001a05 8340{
e0001a05 8341 char *nop_buf = fragP->fr_literal + fragP->fr_fix;
43cd72b9
BW
8342 int length = fragP->tc_frag_data.is_no_density ? 3 : 2;
8343 assemble_nop (length, nop_buf);
e0001a05 8344 fragP->tc_frag_data.is_insn = TRUE;
e0001a05 8345
e0001a05
NC
8346 if (fragP->fr_var < length)
8347 {
dd49a749 8348 as_fatal (_("fr_var (%ld) < length (%d)"), (long) fragP->fr_var, length);
e0001a05
NC
8349 return 0;
8350 }
8351
8352 fragP->fr_fix += length;
8353 fragP->fr_var -= length;
e0001a05
NC
8354 return length;
8355}
8356
8357
7fa3d080
BW
8358static long future_alignment_required (fragS *, long);
8359
e0001a05 8360static long
7fa3d080 8361relax_frag_for_align (fragS *fragP, long stretch)
e0001a05 8362{
43cd72b9
BW
8363 /* Overview of the relaxation procedure for alignment:
8364 We can widen with NOPs or by widening instructions or by filling
8365 bytes after jump instructions. Find the opportune places and widen
8366 them if necessary. */
8367
8368 long stretch_me;
8369 long diff;
e0001a05 8370
43cd72b9
BW
8371 assert (fragP->fr_subtype == RELAX_FILL_NOP
8372 || fragP->fr_subtype == RELAX_UNREACHABLE
8373 || (fragP->fr_subtype == RELAX_SLOTS
8374 && fragP->tc_frag_data.slot_subtypes[0] == RELAX_NARROW));
8375
8376 stretch_me = future_alignment_required (fragP, stretch);
8377 diff = stretch_me - fragP->tc_frag_data.text_expansion[0];
8378 if (diff == 0)
8379 return 0;
e0001a05 8380
43cd72b9 8381 if (diff < 0)
e0001a05 8382 {
43cd72b9
BW
8383 /* We expanded on a previous pass. Can we shrink now? */
8384 long shrink = fragP->tc_frag_data.text_expansion[0] - stretch_me;
8385 if (shrink <= stretch && stretch > 0)
e0001a05 8386 {
43cd72b9
BW
8387 fragP->tc_frag_data.text_expansion[0] = stretch_me;
8388 return -shrink;
e0001a05
NC
8389 }
8390 return 0;
8391 }
8392
43cd72b9
BW
8393 /* Below here, diff > 0. */
8394 fragP->tc_frag_data.text_expansion[0] = stretch_me;
e0001a05 8395
43cd72b9 8396 return diff;
e0001a05
NC
8397}
8398
8399
43cd72b9
BW
8400/* Return the address of the next frag that should be aligned.
8401
8402 By "address" we mean the address it _would_ be at if there
8403 is no action taken to align it between here and the target frag.
8404 In other words, if no narrows and no fill nops are used between
8405 here and the frag to align, _even_if_ some of the frags we use
8406 to align targets have already expanded on a previous relaxation
8407 pass.
8408
8409 Also, count each frag that may be used to help align the target.
8410
8411 Return 0 if there are no frags left in the chain that need to be
8412 aligned. */
8413
8414static addressT
7fa3d080
BW
8415find_address_of_next_align_frag (fragS **fragPP,
8416 int *wide_nops,
8417 int *narrow_nops,
8418 int *widens,
8419 bfd_boolean *paddable)
e0001a05 8420{
43cd72b9
BW
8421 fragS *fragP = *fragPP;
8422 addressT address = fragP->fr_address;
8423
8424 /* Do not reset the counts to 0. */
e0001a05
NC
8425
8426 while (fragP)
8427 {
8428 /* Limit this to a small search. */
b5e4a23d 8429 if (*widens >= (int) xtensa_fetch_width)
43cd72b9
BW
8430 {
8431 *fragPP = fragP;
8432 return 0;
8433 }
e0001a05
NC
8434 address += fragP->fr_fix;
8435
43cd72b9
BW
8436 if (fragP->fr_type == rs_fill)
8437 address += fragP->fr_offset * fragP->fr_var;
8438 else if (fragP->fr_type == rs_machine_dependent)
e0001a05 8439 {
e0001a05
NC
8440 switch (fragP->fr_subtype)
8441 {
43cd72b9
BW
8442 case RELAX_UNREACHABLE:
8443 *paddable = TRUE;
8444 break;
8445
8446 case RELAX_FILL_NOP:
8447 (*wide_nops)++;
8448 if (!fragP->tc_frag_data.is_no_density)
8449 (*narrow_nops)++;
8450 break;
8451
8452 case RELAX_SLOTS:
8453 if (fragP->tc_frag_data.slot_subtypes[0] == RELAX_NARROW)
8454 {
8455 (*widens)++;
8456 break;
8457 }
34e41783 8458 address += total_frag_text_expansion (fragP);;
e0001a05
NC
8459 break;
8460
8461 case RELAX_IMMED:
43cd72b9 8462 address += fragP->tc_frag_data.text_expansion[0];
e0001a05
NC
8463 break;
8464
8465 case RELAX_ALIGN_NEXT_OPCODE:
8466 case RELAX_DESIRE_ALIGN:
43cd72b9
BW
8467 *fragPP = fragP;
8468 return address;
8469
8470 case RELAX_MAYBE_UNREACHABLE:
8471 case RELAX_MAYBE_DESIRE_ALIGN:
8472 /* Do nothing. */
e0001a05
NC
8473 break;
8474
8475 default:
43cd72b9
BW
8476 /* Just punt if we don't know the type. */
8477 *fragPP = fragP;
8478 return 0;
e0001a05 8479 }
43cd72b9 8480 }
c138bc38 8481 else
43cd72b9
BW
8482 {
8483 /* Just punt if we don't know the type. */
8484 *fragPP = fragP;
8485 return 0;
8486 }
8487 fragP = fragP->fr_next;
8488 }
8489
8490 *fragPP = fragP;
8491 return 0;
8492}
8493
8494
7fa3d080
BW
8495static long bytes_to_stretch (fragS *, int, int, int, int);
8496
43cd72b9 8497static long
7fa3d080 8498future_alignment_required (fragS *fragP, long stretch ATTRIBUTE_UNUSED)
43cd72b9
BW
8499{
8500 fragS *this_frag = fragP;
8501 long address;
8502 int num_widens = 0;
8503 int wide_nops = 0;
8504 int narrow_nops = 0;
8505 bfd_boolean paddable = FALSE;
8506 offsetT local_opt_diff;
8507 offsetT opt_diff;
8508 offsetT max_diff;
8509 int stretch_amount = 0;
8510 int local_stretch_amount;
8511 int global_stretch_amount;
8512
7fa3d080
BW
8513 address = find_address_of_next_align_frag
8514 (&fragP, &wide_nops, &narrow_nops, &num_widens, &paddable);
43cd72b9 8515
b5e4a23d
BW
8516 if (!address)
8517 {
8518 if (this_frag->tc_frag_data.is_aligning_branch)
8519 this_frag->tc_frag_data.slot_subtypes[0] = RELAX_IMMED;
8520 else
8521 frag_wane (this_frag);
8522 }
8523 else
43cd72b9
BW
8524 {
8525 local_opt_diff = get_aligned_diff (fragP, address, &max_diff);
8526 opt_diff = local_opt_diff;
8527 assert (opt_diff >= 0);
8528 assert (max_diff >= opt_diff);
c138bc38 8529 if (max_diff == 0)
43cd72b9 8530 return 0;
d2a033cd 8531
43cd72b9
BW
8532 if (fragP)
8533 fragP = fragP->fr_next;
8534
8535 while (fragP && opt_diff < max_diff && address)
8536 {
8537 /* We only use these to determine if we can exit early
c138bc38 8538 because there will be plenty of ways to align future
43cd72b9 8539 align frags. */
d77b99c9 8540 int glob_widens = 0;
43cd72b9
BW
8541 int dnn = 0;
8542 int dw = 0;
8543 bfd_boolean glob_pad = 0;
7fa3d080
BW
8544 address = find_address_of_next_align_frag
8545 (&fragP, &glob_widens, &dnn, &dw, &glob_pad);
43cd72b9 8546 /* If there is a padable portion, then skip. */
664df4e4 8547 if (glob_pad || glob_widens >= (1 << branch_align_power (now_seg)))
b5e4a23d 8548 address = 0;
43cd72b9 8549
c138bc38 8550 if (address)
43cd72b9
BW
8551 {
8552 offsetT next_m_diff;
8553 offsetT next_o_diff;
8554
8555 /* Downrange frags haven't had stretch added to them yet. */
8556 address += stretch;
8557
8558 /* The address also includes any text expansion from this
8559 frag in a previous pass, but we don't want that. */
8560 address -= this_frag->tc_frag_data.text_expansion[0];
8561
8562 /* Assume we are going to move at least opt_diff. In
8563 reality, we might not be able to, but assuming that
8564 we will helps catch cases where moving opt_diff pushes
8565 the next target from aligned to unaligned. */
8566 address += opt_diff;
8567
8568 next_o_diff = get_aligned_diff (fragP, address, &next_m_diff);
8569
8570 /* Now cleanup for the adjustments to address. */
8571 next_o_diff += opt_diff;
8572 next_m_diff += opt_diff;
8573 if (next_o_diff <= max_diff && next_o_diff > opt_diff)
8574 opt_diff = next_o_diff;
8575 if (next_m_diff < max_diff)
8576 max_diff = next_m_diff;
8577 fragP = fragP->fr_next;
8578 }
8579 }
d2a033cd 8580
43cd72b9
BW
8581 /* If there are enough wideners in between, do it. */
8582 if (paddable)
8583 {
8584 if (this_frag->fr_subtype == RELAX_UNREACHABLE)
8585 {
8586 assert (opt_diff <= UNREACHABLE_MAX_WIDTH);
8587 return opt_diff;
8588 }
8589 return 0;
8590 }
c138bc38 8591 local_stretch_amount
43cd72b9
BW
8592 = bytes_to_stretch (this_frag, wide_nops, narrow_nops,
8593 num_widens, local_opt_diff);
c138bc38
BW
8594 global_stretch_amount
8595 = bytes_to_stretch (this_frag, wide_nops, narrow_nops,
43cd72b9 8596 num_widens, opt_diff);
c138bc38
BW
8597 /* If the condition below is true, then the frag couldn't
8598 stretch the correct amount for the global case, so we just
8599 optimize locally. We'll rely on the subsequent frags to get
43cd72b9
BW
8600 the correct alignment in the global case. */
8601 if (global_stretch_amount < local_stretch_amount)
8602 stretch_amount = local_stretch_amount;
8603 else
8604 stretch_amount = global_stretch_amount;
d2a033cd 8605
43cd72b9
BW
8606 if (this_frag->fr_subtype == RELAX_SLOTS
8607 && this_frag->tc_frag_data.slot_subtypes[0] == RELAX_NARROW)
8608 assert (stretch_amount <= 1);
8609 else if (this_frag->fr_subtype == RELAX_FILL_NOP)
8610 {
8611 if (this_frag->tc_frag_data.is_no_density)
8612 assert (stretch_amount == 3 || stretch_amount == 0);
8613 else
8614 assert (stretch_amount <= 3);
8615 }
8616 }
8617 return stretch_amount;
8618}
8619
8620
8621/* The idea: widen everything you can to get a target or loop aligned,
8622 then start using NOPs.
8623
8624 When we must have a NOP, here is a table of how we decide
8625 (so you don't have to fight through the control flow below):
8626
8627 wide_nops = the number of wide NOPs available for aligning
8628 narrow_nops = the number of narrow NOPs available for aligning
8629 (a subset of wide_nops)
8630 widens = the number of narrow instructions that should be widened
8631
8632 Desired wide narrow
8633 Diff nop nop widens
8634 1 0 0 1
8635 2 0 1 0
8636 3a 1 0 0
8637 b 0 1 1 (case 3a makes this case unnecessary)
8638 4a 1 0 1
8639 b 0 2 0
8640 c 0 1 2 (case 4a makes this case unnecessary)
8641 5a 1 0 2
8642 b 1 1 0
8643 c 0 2 1 (case 5b makes this case unnecessary)
8644 6a 2 0 0
8645 b 1 0 3
708587a4 8646 c 0 1 4 (case 6b makes this case unnecessary)
43cd72b9
BW
8647 d 1 1 1 (case 6a makes this case unnecessary)
8648 e 0 2 2 (case 6a makes this case unnecessary)
8649 f 0 3 0 (case 6a makes this case unnecessary)
8650 7a 1 0 4
8651 b 2 0 1
8652 c 1 1 2 (case 7b makes this case unnecessary)
8653 d 0 1 5 (case 7a makes this case unnecessary)
8654 e 0 2 3 (case 7b makes this case unnecessary)
8655 f 0 3 1 (case 7b makes this case unnecessary)
8656 g 1 2 1 (case 7b makes this case unnecessary)
8657*/
8658
8659static long
7fa3d080
BW
8660bytes_to_stretch (fragS *this_frag,
8661 int wide_nops,
8662 int narrow_nops,
8663 int num_widens,
8664 int desired_diff)
43cd72b9
BW
8665{
8666 int bytes_short = desired_diff - num_widens;
8667
8668 assert (desired_diff >= 0 && desired_diff < 8);
8669 if (desired_diff == 0)
8670 return 0;
c138bc38 8671
43cd72b9 8672 assert (wide_nops > 0 || num_widens > 0);
e0001a05 8673
43cd72b9
BW
8674 /* Always prefer widening to NOP-filling. */
8675 if (bytes_short < 0)
8676 {
8677 /* There are enough RELAX_NARROW frags after this one
8678 to align the target without widening this frag in any way. */
8679 return 0;
8680 }
c138bc38 8681
43cd72b9
BW
8682 if (bytes_short == 0)
8683 {
8684 /* Widen every narrow between here and the align target
8685 and the align target will be properly aligned. */
8686 if (this_frag->fr_subtype == RELAX_FILL_NOP)
8687 return 0;
8688 else
8689 return 1;
8690 }
c138bc38 8691
43cd72b9
BW
8692 /* From here we will need at least one NOP to get an alignment.
8693 However, we may not be able to align at all, in which case,
8694 don't widen. */
8695 if (this_frag->fr_subtype == RELAX_FILL_NOP)
8696 {
8697 switch (desired_diff)
8698 {
8699 case 1:
8700 return 0;
8701 case 2:
8702 if (!this_frag->tc_frag_data.is_no_density && narrow_nops == 1)
8703 return 2; /* case 2 */
8704 return 0;
c138bc38 8705 case 3:
43cd72b9
BW
8706 if (wide_nops > 1)
8707 return 0;
8708 else
8709 return 3; /* case 3a */
8710 case 4:
8711 if (num_widens >= 1 && wide_nops == 1)
8712 return 3; /* case 4a */
8713 if (!this_frag->tc_frag_data.is_no_density && narrow_nops == 2)
8714 return 2; /* case 4b */
8715 return 0;
8716 case 5:
8717 if (num_widens >= 2 && wide_nops == 1)
8718 return 3; /* case 5a */
c138bc38 8719 /* We will need two nops. Are there enough nops
43cd72b9
BW
8720 between here and the align target? */
8721 if (wide_nops < 2 || narrow_nops == 0)
8722 return 0;
8723 /* Are there other nops closer that can serve instead? */
8724 if (wide_nops > 2 && narrow_nops > 1)
8725 return 0;
8726 /* Take the density one first, because there might not be
8727 another density one available. */
8728 if (!this_frag->tc_frag_data.is_no_density)
8729 return 2; /* case 5b narrow */
8730 else
8731 return 3; /* case 5b wide */
8732 return 0;
8733 case 6:
8734 if (wide_nops == 2)
8735 return 3; /* case 6a */
8736 else if (num_widens >= 3 && wide_nops == 1)
8737 return 3; /* case 6b */
8738 return 0;
8739 case 7:
8740 if (wide_nops == 1 && num_widens >= 4)
8741 return 3; /* case 7a */
8742 else if (wide_nops == 2 && num_widens >= 1)
8743 return 3; /* case 7b */
8744 return 0;
e0001a05 8745 default:
43cd72b9 8746 assert (0);
e0001a05 8747 }
e0001a05 8748 }
43cd72b9
BW
8749 else
8750 {
c138bc38 8751 /* We will need a NOP no matter what, but should we widen
43cd72b9 8752 this instruction to help?
e0001a05 8753
03aaa593 8754 This is a RELAX_NARROW frag. */
43cd72b9
BW
8755 switch (desired_diff)
8756 {
8757 case 1:
8758 assert (0);
8759 return 0;
8760 case 2:
8761 case 3:
8762 return 0;
8763 case 4:
8764 if (wide_nops >= 1 && num_widens == 1)
8765 return 1; /* case 4a */
8766 return 0;
8767 case 5:
8768 if (wide_nops >= 1 && num_widens == 2)
8769 return 1; /* case 5a */
8770 return 0;
8771 case 6:
8772 if (wide_nops >= 2)
8773 return 0; /* case 6a */
8774 else if (wide_nops >= 1 && num_widens == 3)
8775 return 1; /* case 6b */
8776 return 0;
8777 case 7:
8778 if (wide_nops >= 1 && num_widens == 4)
8779 return 1; /* case 7a */
8780 else if (wide_nops >= 2 && num_widens == 1)
8781 return 1; /* case 7b */
8782 return 0;
8783 default:
8784 assert (0);
8785 return 0;
8786 }
8787 }
8788 assert (0);
8789 return 0;
e0001a05
NC
8790}
8791
8792
8793static long
7fa3d080
BW
8794relax_frag_immed (segT segP,
8795 fragS *fragP,
8796 long stretch,
8797 int min_steps,
8798 xtensa_format fmt,
8799 int slot,
8800 int *stretched_p,
8801 bfd_boolean estimate_only)
e0001a05 8802{
43cd72b9 8803 TInsn tinsn;
e0001a05
NC
8804 int old_size;
8805 bfd_boolean negatable_branch = FALSE;
8806 bfd_boolean branch_jmp_to_next = FALSE;
43cd72b9
BW
8807 bfd_boolean wide_insn = FALSE;
8808 xtensa_isa isa = xtensa_default_isa;
e0001a05
NC
8809 IStack istack;
8810 offsetT frag_offset;
8811 int num_steps;
8812 fragS *lit_fragP;
8813 int num_text_bytes, num_literal_bytes;
43cd72b9 8814 int literal_diff, total_text_diff, this_text_diff, first;
e0001a05
NC
8815
8816 assert (fragP->fr_opcode != NULL);
8817
b5e4a23d
BW
8818 xg_clear_vinsn (&cur_vinsn);
8819 vinsn_from_chars (&cur_vinsn, fragP->fr_opcode);
b2d179be 8820 if (cur_vinsn.num_slots > 1)
43cd72b9
BW
8821 wide_insn = TRUE;
8822
b5e4a23d 8823 tinsn = cur_vinsn.slots[slot];
43cd72b9 8824 tinsn_immed_from_frag (&tinsn, fragP, slot);
e0001a05 8825
64b607e6 8826 if (estimate_only && xtensa_opcode_is_loop (isa, tinsn.opcode) == 1)
43cd72b9 8827 return 0;
e0001a05 8828
b08b5071 8829 if (workaround_b_j_loop_end && ! fragP->tc_frag_data.is_no_transform)
43cd72b9 8830 branch_jmp_to_next = is_branch_jmp_to_next (&tinsn, fragP);
e0001a05 8831
43cd72b9 8832 negatable_branch = (xtensa_opcode_is_branch (isa, tinsn.opcode) == 1);
e0001a05 8833
43cd72b9 8834 old_size = xtensa_format_length (isa, fmt);
e0001a05
NC
8835
8836 /* Special case: replace a branch to the next instruction with a NOP.
8837 This is required to work around a hardware bug in T1040.0 and also
8838 serves as an optimization. */
8839
8840 if (branch_jmp_to_next
8841 && ((old_size == 2) || (old_size == 3))
8842 && !next_frag_is_loop_target (fragP))
8843 return 0;
8844
8845 /* Here is the fun stuff: Get the immediate field from this
8846 instruction. If it fits, we are done. If not, find the next
8847 instruction sequence that fits. */
8848
8849 frag_offset = fragP->fr_opcode - fragP->fr_literal;
8850 istack_init (&istack);
43cd72b9 8851 num_steps = xg_assembly_relax (&istack, &tinsn, segP, fragP, frag_offset,
e0001a05
NC
8852 min_steps, stretch);
8853 if (num_steps < min_steps)
8854 {
8855 as_fatal (_("internal error: relaxation failed"));
8856 return 0;
8857 }
8858
8859 if (num_steps > RELAX_IMMED_MAXSTEPS)
8860 {
8861 as_fatal (_("internal error: relaxation requires too many steps"));
8862 return 0;
8863 }
8864
43cd72b9 8865 fragP->tc_frag_data.slot_subtypes[slot] = (int) RELAX_IMMED + num_steps;
e0001a05
NC
8866
8867 /* Figure out the number of bytes needed. */
8868 lit_fragP = 0;
e0001a05 8869 num_literal_bytes = get_num_stack_literal_bytes (&istack);
43cd72b9
BW
8870 literal_diff =
8871 num_literal_bytes - fragP->tc_frag_data.literal_expansion[slot];
8872 first = 0;
8873 while (istack.insn[first].opcode == XTENSA_UNDEFINED)
8874 first++;
8875 num_text_bytes = get_num_stack_text_bytes (&istack);
8876 if (wide_insn)
8877 {
8878 num_text_bytes += old_size;
8879 if (opcode_fits_format_slot (istack.insn[first].opcode, fmt, slot))
8880 num_text_bytes -= xg_get_single_size (istack.insn[first].opcode);
8881 }
8882 total_text_diff = num_text_bytes - old_size;
8883 this_text_diff = total_text_diff - fragP->tc_frag_data.text_expansion[slot];
e0001a05
NC
8884
8885 /* It MUST get larger. If not, we could get an infinite loop. */
43cd72b9
BW
8886 assert (num_text_bytes >= 0);
8887 assert (literal_diff >= 0);
8888 assert (total_text_diff >= 0);
e0001a05 8889
43cd72b9
BW
8890 fragP->tc_frag_data.text_expansion[slot] = total_text_diff;
8891 fragP->tc_frag_data.literal_expansion[slot] = num_literal_bytes;
8892 assert (fragP->tc_frag_data.text_expansion[slot] >= 0);
8893 assert (fragP->tc_frag_data.literal_expansion[slot] >= 0);
e0001a05
NC
8894
8895 /* Find the associated expandable literal for this. */
8896 if (literal_diff != 0)
8897 {
43cd72b9 8898 lit_fragP = fragP->tc_frag_data.literal_frags[slot];
e0001a05
NC
8899 if (lit_fragP)
8900 {
8901 assert (literal_diff == 4);
8902 lit_fragP->tc_frag_data.unreported_expansion += literal_diff;
8903
8904 /* We expect that the literal section state has NOT been
8905 modified yet. */
8906 assert (lit_fragP->fr_type == rs_machine_dependent
8907 && lit_fragP->fr_subtype == RELAX_LITERAL);
8908 lit_fragP->fr_subtype = RELAX_LITERAL_NR;
8909
8910 /* We need to mark this section for another iteration
8911 of relaxation. */
8912 (*stretched_p)++;
8913 }
8914 }
8915
43cd72b9 8916 if (negatable_branch && istack.ninsn > 1)
1d19a770 8917 update_next_frag_state (fragP);
e0001a05 8918
43cd72b9 8919 return this_text_diff;
e0001a05
NC
8920}
8921
8922\f
8923/* md_convert_frag Hook and Helper Functions. */
8924
7fa3d080
BW
8925static void convert_frag_align_next_opcode (fragS *);
8926static void convert_frag_narrow (segT, fragS *, xtensa_format, int);
8927static void convert_frag_fill_nop (fragS *);
8928static void convert_frag_immed (segT, fragS *, int, xtensa_format, int);
8929
e0001a05 8930void
7fa3d080 8931md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT sec, fragS *fragp)
e0001a05 8932{
43cd72b9
BW
8933 static xtensa_insnbuf vbuf = NULL;
8934 xtensa_isa isa = xtensa_default_isa;
8935 int slot;
8936 int num_slots;
8937 xtensa_format fmt;
e0001a05 8938 char *file_name;
d77b99c9 8939 unsigned line;
e0001a05
NC
8940
8941 as_where (&file_name, &line);
8942 new_logical_line (fragp->fr_file, fragp->fr_line);
8943
8944 switch (fragp->fr_subtype)
8945 {
8946 case RELAX_ALIGN_NEXT_OPCODE:
8947 /* Always convert. */
8948 convert_frag_align_next_opcode (fragp);
8949 break;
8950
8951 case RELAX_DESIRE_ALIGN:
8952 /* Do nothing. If not aligned already, too bad. */
8953 break;
8954
43cd72b9
BW
8955 case RELAX_LITERAL:
8956 case RELAX_LITERAL_FINAL:
8957 break;
8958
8959 case RELAX_SLOTS:
8960 if (vbuf == NULL)
8961 vbuf = xtensa_insnbuf_alloc (isa);
8962
d77b99c9
BW
8963 xtensa_insnbuf_from_chars
8964 (isa, vbuf, (unsigned char *) fragp->fr_opcode, 0);
43cd72b9
BW
8965 fmt = xtensa_format_decode (isa, vbuf);
8966 num_slots = xtensa_format_num_slots (isa, fmt);
8967
8968 for (slot = 0; slot < num_slots; slot++)
8969 {
8970 switch (fragp->tc_frag_data.slot_subtypes[slot])
8971 {
8972 case RELAX_NARROW:
8973 convert_frag_narrow (sec, fragp, fmt, slot);
8974 break;
8975
8976 case RELAX_IMMED:
8977 case RELAX_IMMED_STEP1:
8978 case RELAX_IMMED_STEP2:
8979 /* Place the immediate. */
8980 convert_frag_immed
8981 (sec, fragp,
8982 fragp->tc_frag_data.slot_subtypes[slot] - RELAX_IMMED,
8983 fmt, slot);
8984 break;
8985
8986 default:
8987 /* This is OK because some slots could have
8988 relaxations and others have none. */
8989 break;
8990 }
8991 }
8992 break;
8993
8994 case RELAX_UNREACHABLE:
8995 memset (&fragp->fr_literal[fragp->fr_fix], 0, fragp->fr_var);
8996 fragp->fr_fix += fragp->tc_frag_data.text_expansion[0];
8997 fragp->fr_var -= fragp->tc_frag_data.text_expansion[0];
8998 frag_wane (fragp);
e0001a05
NC
8999 break;
9000
43cd72b9
BW
9001 case RELAX_MAYBE_UNREACHABLE:
9002 case RELAX_MAYBE_DESIRE_ALIGN:
9003 frag_wane (fragp);
e0001a05
NC
9004 break;
9005
43cd72b9
BW
9006 case RELAX_FILL_NOP:
9007 convert_frag_fill_nop (fragp);
e0001a05
NC
9008 break;
9009
9010 case RELAX_LITERAL_NR:
9011 if (use_literal_section)
9012 {
9013 /* This should have been handled during relaxation. When
9014 relaxing a code segment, literals sometimes need to be
9015 added to the corresponding literal segment. If that
9016 literal segment has already been relaxed, then we end up
9017 in this situation. Marking the literal segments as data
9018 would make this happen less often (since GAS always relaxes
9019 code before data), but we could still get into trouble if
9020 there are instructions in a segment that is not marked as
9021 containing code. Until we can implement a better solution,
9022 cheat and adjust the addresses of all the following frags.
9023 This could break subsequent alignments, but the linker's
9024 literal coalescing will do that anyway. */
9025
9026 fragS *f;
9027 fragp->fr_subtype = RELAX_LITERAL_FINAL;
9028 assert (fragp->tc_frag_data.unreported_expansion == 4);
9029 memset (&fragp->fr_literal[fragp->fr_fix], 0, 4);
9030 fragp->fr_var -= 4;
9031 fragp->fr_fix += 4;
9032 for (f = fragp->fr_next; f; f = f->fr_next)
9033 f->fr_address += 4;
9034 }
9035 else
9036 as_bad (_("invalid relaxation fragment result"));
9037 break;
9038 }
9039
9040 fragp->fr_var = 0;
9041 new_logical_line (file_name, line);
9042}
9043
9044
7fa3d080
BW
9045static void
9046convert_frag_align_next_opcode (fragS *fragp)
e0001a05
NC
9047{
9048 char *nop_buf; /* Location for Writing. */
e0001a05
NC
9049 bfd_boolean use_no_density = fragp->tc_frag_data.is_no_density;
9050 addressT aligned_address;
d77b99c9
BW
9051 offsetT fill_size;
9052 int nop, nop_count;
e0001a05
NC
9053
9054 aligned_address = get_noop_aligned_address (fragp, fragp->fr_address +
9055 fragp->fr_fix);
9056 fill_size = aligned_address - (fragp->fr_address + fragp->fr_fix);
9057 nop_count = get_text_align_nop_count (fill_size, use_no_density);
9058 nop_buf = fragp->fr_literal + fragp->fr_fix;
9059
d77b99c9 9060 for (nop = 0; nop < nop_count; nop++)
e0001a05 9061 {
d77b99c9
BW
9062 int nop_size;
9063 nop_size = get_text_align_nth_nop_size (fill_size, nop, use_no_density);
e0001a05
NC
9064
9065 assemble_nop (nop_size, nop_buf);
9066 nop_buf += nop_size;
9067 }
9068
9069 fragp->fr_fix += fill_size;
9070 fragp->fr_var -= fill_size;
9071}
9072
9073
9074static void
7fa3d080 9075convert_frag_narrow (segT segP, fragS *fragP, xtensa_format fmt, int slot)
e0001a05 9076{
43cd72b9 9077 TInsn tinsn, single_target;
84b08ed9 9078 int size, old_size, diff;
e0001a05
NC
9079 offsetT frag_offset;
9080
43cd72b9
BW
9081 assert (slot == 0);
9082 tinsn_from_chars (&tinsn, fragP->fr_opcode, 0);
9083
b5e4a23d 9084 if (fragP->tc_frag_data.is_aligning_branch == 1)
43cd72b9
BW
9085 {
9086 assert (fragP->tc_frag_data.text_expansion[0] == 1
9087 || fragP->tc_frag_data.text_expansion[0] == 0);
9088 convert_frag_immed (segP, fragP, fragP->tc_frag_data.text_expansion[0],
9089 fmt, slot);
9090 return;
9091 }
9092
9093 if (fragP->tc_frag_data.text_expansion[0] == 0)
e0001a05
NC
9094 {
9095 /* No conversion. */
9096 fragP->fr_var = 0;
9097 return;
9098 }
9099
9100 assert (fragP->fr_opcode != NULL);
9101
43cd72b9
BW
9102 /* Frags in this relaxation state should only contain
9103 single instruction bundles. */
9104 tinsn_immed_from_frag (&tinsn, fragP, 0);
e0001a05
NC
9105
9106 /* Just convert it to a wide form.... */
9107 size = 0;
43cd72b9 9108 old_size = xg_get_single_size (tinsn.opcode);
e0001a05
NC
9109
9110 tinsn_init (&single_target);
9111 frag_offset = fragP->fr_opcode - fragP->fr_literal;
9112
84b08ed9 9113 if (! xg_is_single_relaxable_insn (&tinsn, &single_target, FALSE))
43cd72b9
BW
9114 {
9115 as_bad (_("unable to widen instruction"));
9116 return;
9117 }
9118
9119 size = xg_get_single_size (single_target.opcode);
b2d179be
BW
9120 xg_emit_insn_to_buf (&single_target, fragP->fr_opcode, fragP,
9121 frag_offset, TRUE);
e0001a05
NC
9122
9123 diff = size - old_size;
9124 assert (diff >= 0);
9125 assert (diff <= fragP->fr_var);
9126 fragP->fr_var -= diff;
9127 fragP->fr_fix += diff;
9128
9129 /* clean it up */
9130 fragP->fr_var = 0;
9131}
9132
9133
9134static void
7fa3d080 9135convert_frag_fill_nop (fragS *fragP)
43cd72b9
BW
9136{
9137 char *loc = &fragP->fr_literal[fragP->fr_fix];
9138 int size = fragP->tc_frag_data.text_expansion[0];
9139 assert ((unsigned) size == (fragP->fr_next->fr_address
9140 - fragP->fr_address - fragP->fr_fix));
9141 if (size == 0)
9142 {
9143 /* No conversion. */
9144 fragP->fr_var = 0;
9145 return;
9146 }
9147 assemble_nop (size, loc);
9148 fragP->tc_frag_data.is_insn = TRUE;
9149 fragP->fr_var -= size;
9150 fragP->fr_fix += size;
9151 frag_wane (fragP);
9152}
9153
9154
7fa3d080
BW
9155static fixS *fix_new_exp_in_seg
9156 (segT, subsegT, fragS *, int, int, expressionS *, int,
9157 bfd_reloc_code_real_type);
9158static void convert_frag_immed_finish_loop (segT, fragS *, TInsn *);
9159
43cd72b9 9160static void
7fa3d080
BW
9161convert_frag_immed (segT segP,
9162 fragS *fragP,
9163 int min_steps,
9164 xtensa_format fmt,
9165 int slot)
e0001a05
NC
9166{
9167 char *immed_instr = fragP->fr_opcode;
43cd72b9 9168 TInsn orig_tinsn;
e0001a05 9169 bfd_boolean expanded = FALSE;
e0001a05 9170 bfd_boolean branch_jmp_to_next = FALSE;
43cd72b9 9171 char *fr_opcode = fragP->fr_opcode;
43cd72b9
BW
9172 xtensa_isa isa = xtensa_default_isa;
9173 bfd_boolean wide_insn = FALSE;
9174 int bytes;
9175 bfd_boolean is_loop;
e0001a05 9176
43cd72b9 9177 assert (fr_opcode != NULL);
e0001a05 9178
b5e4a23d 9179 xg_clear_vinsn (&cur_vinsn);
e0001a05 9180
b5e4a23d 9181 vinsn_from_chars (&cur_vinsn, fr_opcode);
b2d179be 9182 if (cur_vinsn.num_slots > 1)
43cd72b9 9183 wide_insn = TRUE;
e0001a05 9184
b5e4a23d 9185 orig_tinsn = cur_vinsn.slots[slot];
43cd72b9
BW
9186 tinsn_immed_from_frag (&orig_tinsn, fragP, slot);
9187
9188 is_loop = xtensa_opcode_is_loop (xtensa_default_isa, orig_tinsn.opcode) == 1;
e0001a05 9189
b08b5071 9190 if (workaround_b_j_loop_end && ! fragP->tc_frag_data.is_no_transform)
43cd72b9 9191 branch_jmp_to_next = is_branch_jmp_to_next (&orig_tinsn, fragP);
e0001a05
NC
9192
9193 if (branch_jmp_to_next && !next_frag_is_loop_target (fragP))
9194 {
9195 /* Conversion just inserts a NOP and marks the fix as completed. */
43cd72b9
BW
9196 bytes = xtensa_format_length (isa, fmt);
9197 if (bytes >= 4)
9198 {
b5e4a23d
BW
9199 cur_vinsn.slots[slot].opcode =
9200 xtensa_format_slot_nop_opcode (isa, cur_vinsn.format, slot);
9201 cur_vinsn.slots[slot].ntok = 0;
43cd72b9
BW
9202 }
9203 else
9204 {
9205 bytes += fragP->tc_frag_data.text_expansion[0];
9206 assert (bytes == 2 || bytes == 3);
b5e4a23d 9207 build_nop (&cur_vinsn.slots[0], bytes);
43cd72b9
BW
9208 fragP->fr_fix += fragP->tc_frag_data.text_expansion[0];
9209 }
e7da6241 9210 vinsn_to_insnbuf (&cur_vinsn, fr_opcode, frag_now, TRUE);
d77b99c9 9211 xtensa_insnbuf_to_chars
b5e4a23d 9212 (isa, cur_vinsn.insnbuf, (unsigned char *) fr_opcode, 0);
e0001a05
NC
9213 fragP->fr_var = 0;
9214 }
7c834684 9215 else
e0001a05 9216 {
43cd72b9
BW
9217 /* Here is the fun stuff: Get the immediate field from this
9218 instruction. If it fits, we're done. If not, find the next
9219 instruction sequence that fits. */
9220
e0001a05
NC
9221 IStack istack;
9222 int i;
9223 symbolS *lit_sym = NULL;
9224 int total_size = 0;
43cd72b9 9225 int target_offset = 0;
e0001a05
NC
9226 int old_size;
9227 int diff;
9228 symbolS *gen_label = NULL;
9229 offsetT frag_offset;
43cd72b9
BW
9230 bfd_boolean first = TRUE;
9231 bfd_boolean last_is_jump;
e0001a05 9232
43cd72b9 9233 /* It does not fit. Find something that does and
e0001a05 9234 convert immediately. */
43cd72b9 9235 frag_offset = fr_opcode - fragP->fr_literal;
e0001a05 9236 istack_init (&istack);
43cd72b9 9237 xg_assembly_relax (&istack, &orig_tinsn,
e0001a05
NC
9238 segP, fragP, frag_offset, min_steps, 0);
9239
43cd72b9 9240 old_size = xtensa_format_length (isa, fmt);
e0001a05
NC
9241
9242 /* Assemble this right inline. */
9243
9244 /* First, create the mapping from a label name to the REAL label. */
43cd72b9 9245 target_offset = 0;
e0001a05
NC
9246 for (i = 0; i < istack.ninsn; i++)
9247 {
43cd72b9 9248 TInsn *tinsn = &istack.insn[i];
e0001a05
NC
9249 fragS *lit_frag;
9250
43cd72b9 9251 switch (tinsn->insn_type)
e0001a05
NC
9252 {
9253 case ITYPE_LITERAL:
9254 if (lit_sym != NULL)
9255 as_bad (_("multiple literals in expansion"));
9256 /* First find the appropriate space in the literal pool. */
43cd72b9 9257 lit_frag = fragP->tc_frag_data.literal_frags[slot];
e0001a05
NC
9258 if (lit_frag == NULL)
9259 as_bad (_("no registered fragment for literal"));
43cd72b9 9260 if (tinsn->ntok != 1)
e0001a05
NC
9261 as_bad (_("number of literal tokens != 1"));
9262
9263 /* Set the literal symbol and add a fixup. */
9264 lit_sym = lit_frag->fr_symbol;
9265 break;
9266
9267 case ITYPE_LABEL:
43cd72b9
BW
9268 if (align_targets && !is_loop)
9269 {
9270 fragS *unreach = fragP->fr_next;
9271 while (!(unreach->fr_type == rs_machine_dependent
9272 && (unreach->fr_subtype == RELAX_MAYBE_UNREACHABLE
9273 || unreach->fr_subtype == RELAX_UNREACHABLE)))
9274 {
9275 unreach = unreach->fr_next;
9276 }
9277
9278 assert (unreach->fr_type == rs_machine_dependent
9279 && (unreach->fr_subtype == RELAX_MAYBE_UNREACHABLE
9280 || unreach->fr_subtype == RELAX_UNREACHABLE));
9281
9282 target_offset += unreach->tc_frag_data.text_expansion[0];
9283 }
e0001a05
NC
9284 assert (gen_label == NULL);
9285 gen_label = symbol_new (FAKE_LABEL_NAME, now_seg,
43cd72b9
BW
9286 fr_opcode - fragP->fr_literal
9287 + target_offset, fragP);
e0001a05
NC
9288 break;
9289
9290 case ITYPE_INSN:
43cd72b9
BW
9291 if (first && wide_insn)
9292 {
9293 target_offset += xtensa_format_length (isa, fmt);
9294 first = FALSE;
9295 if (!opcode_fits_format_slot (tinsn->opcode, fmt, slot))
9296 target_offset += xg_get_single_size (tinsn->opcode);
9297 }
9298 else
9299 target_offset += xg_get_single_size (tinsn->opcode);
e0001a05
NC
9300 break;
9301 }
9302 }
9303
9304 total_size = 0;
43cd72b9
BW
9305 first = TRUE;
9306 last_is_jump = FALSE;
e0001a05
NC
9307 for (i = 0; i < istack.ninsn; i++)
9308 {
43cd72b9 9309 TInsn *tinsn = &istack.insn[i];
e0001a05
NC
9310 fragS *lit_frag;
9311 int size;
9312 segT target_seg;
43cd72b9 9313 bfd_reloc_code_real_type reloc_type;
e0001a05 9314
43cd72b9 9315 switch (tinsn->insn_type)
e0001a05
NC
9316 {
9317 case ITYPE_LITERAL:
43cd72b9
BW
9318 lit_frag = fragP->tc_frag_data.literal_frags[slot];
9319 /* Already checked. */
e0001a05
NC
9320 assert (lit_frag != NULL);
9321 assert (lit_sym != NULL);
43cd72b9
BW
9322 assert (tinsn->ntok == 1);
9323 /* Add a fixup. */
e0001a05
NC
9324 target_seg = S_GET_SEGMENT (lit_sym);
9325 assert (target_seg);
bbdd25a8 9326 reloc_type = map_operator_to_reloc (tinsn->tok[0].X_op);
e0001a05 9327 fix_new_exp_in_seg (target_seg, 0, lit_frag, 0, 4,
43cd72b9 9328 &tinsn->tok[0], FALSE, reloc_type);
e0001a05
NC
9329 break;
9330
9331 case ITYPE_LABEL:
9332 break;
9333
9334 case ITYPE_INSN:
43cd72b9
BW
9335 xg_resolve_labels (tinsn, gen_label);
9336 xg_resolve_literals (tinsn, lit_sym);
9337 if (wide_insn && first)
9338 {
9339 first = FALSE;
9340 if (opcode_fits_format_slot (tinsn->opcode, fmt, slot))
9341 {
b5e4a23d 9342 cur_vinsn.slots[slot] = *tinsn;
43cd72b9
BW
9343 }
9344 else
9345 {
b5e4a23d 9346 cur_vinsn.slots[slot].opcode =
43cd72b9 9347 xtensa_format_slot_nop_opcode (isa, fmt, slot);
b5e4a23d 9348 cur_vinsn.slots[slot].ntok = 0;
43cd72b9 9349 }
b5e4a23d
BW
9350 vinsn_to_insnbuf (&cur_vinsn, immed_instr, fragP, TRUE);
9351 xtensa_insnbuf_to_chars (isa, cur_vinsn.insnbuf,
d77b99c9 9352 (unsigned char *) immed_instr, 0);
43cd72b9
BW
9353 fragP->tc_frag_data.is_insn = TRUE;
9354 size = xtensa_format_length (isa, fmt);
9355 if (!opcode_fits_format_slot (tinsn->opcode, fmt, slot))
9356 {
43cd72b9 9357 xg_emit_insn_to_buf
b2d179be 9358 (tinsn, immed_instr + size, fragP,
43cd72b9
BW
9359 immed_instr - fragP->fr_literal + size, TRUE);
9360 size += xg_get_single_size (tinsn->opcode);
9361 }
9362 }
9363 else
9364 {
43cd72b9 9365 size = xg_get_single_size (tinsn->opcode);
b2d179be 9366 xg_emit_insn_to_buf (tinsn, immed_instr, fragP,
43cd72b9 9367 immed_instr - fragP->fr_literal, TRUE);
43cd72b9 9368 }
e0001a05 9369 immed_instr += size;
43cd72b9 9370 total_size += size;
e0001a05
NC
9371 break;
9372 }
9373 }
9374
9375 diff = total_size - old_size;
9376 assert (diff >= 0);
9377 if (diff != 0)
9378 expanded = TRUE;
9379 assert (diff <= fragP->fr_var);
9380 fragP->fr_var -= diff;
9381 fragP->fr_fix += diff;
9382 }
9383
e0001a05 9384 /* Check for undefined immediates in LOOP instructions. */
43cd72b9 9385 if (is_loop)
e0001a05
NC
9386 {
9387 symbolS *sym;
43cd72b9 9388 sym = orig_tinsn.tok[1].X_add_symbol;
e0001a05
NC
9389 if (sym != NULL && !S_IS_DEFINED (sym))
9390 {
9391 as_bad (_("unresolved loop target symbol: %s"), S_GET_NAME (sym));
9392 return;
9393 }
43cd72b9 9394 sym = orig_tinsn.tok[1].X_op_symbol;
e0001a05
NC
9395 if (sym != NULL && !S_IS_DEFINED (sym))
9396 {
9397 as_bad (_("unresolved loop target symbol: %s"), S_GET_NAME (sym));
9398 return;
9399 }
9400 }
9401
43cd72b9
BW
9402 if (expanded && xtensa_opcode_is_loop (isa, orig_tinsn.opcode) == 1)
9403 convert_frag_immed_finish_loop (segP, fragP, &orig_tinsn);
e0001a05 9404
43cd72b9 9405 if (expanded && is_direct_call_opcode (orig_tinsn.opcode))
e0001a05
NC
9406 {
9407 /* Add an expansion note on the expanded instruction. */
9408 fix_new_exp_in_seg (now_seg, 0, fragP, fr_opcode - fragP->fr_literal, 4,
43cd72b9 9409 &orig_tinsn.tok[0], TRUE,
e0001a05 9410 BFD_RELOC_XTENSA_ASM_EXPAND);
e0001a05
NC
9411 }
9412}
9413
9414
9415/* Add a new fix expression into the desired segment. We have to
9416 switch to that segment to do this. */
9417
9418static fixS *
7fa3d080
BW
9419fix_new_exp_in_seg (segT new_seg,
9420 subsegT new_subseg,
9421 fragS *frag,
9422 int where,
9423 int size,
9424 expressionS *exp,
9425 int pcrel,
9426 bfd_reloc_code_real_type r_type)
e0001a05
NC
9427{
9428 fixS *new_fix;
9429 segT seg = now_seg;
9430 subsegT subseg = now_subseg;
43cd72b9 9431
e0001a05
NC
9432 assert (new_seg != 0);
9433 subseg_set (new_seg, new_subseg);
9434
e0001a05
NC
9435 new_fix = fix_new_exp (frag, where, size, exp, pcrel, r_type);
9436 subseg_set (seg, subseg);
9437 return new_fix;
9438}
9439
9440
43cd72b9
BW
9441/* Relax a loop instruction so that it can span loop >256 bytes.
9442
9443 loop as, .L1
9444 .L0:
9445 rsr as, LEND
9446 wsr as, LBEG
9447 addi as, as, lo8 (label-.L1)
9448 addmi as, as, mid8 (label-.L1)
9449 wsr as, LEND
9450 isync
9451 rsr as, LCOUNT
9452 addi as, as, 1
9453 .L1:
9454 <<body>>
9455 label:
9456*/
e0001a05
NC
9457
9458static void
7fa3d080 9459convert_frag_immed_finish_loop (segT segP, fragS *fragP, TInsn *tinsn)
e0001a05
NC
9460{
9461 TInsn loop_insn;
9462 TInsn addi_insn;
9463 TInsn addmi_insn;
9464 unsigned long target;
9465 static xtensa_insnbuf insnbuf = NULL;
9466 unsigned int loop_length, loop_length_hi, loop_length_lo;
9467 xtensa_isa isa = xtensa_default_isa;
9468 addressT loop_offset;
9469 addressT addi_offset = 9;
9470 addressT addmi_offset = 12;
43cd72b9 9471 fragS *next_fragP;
d77b99c9 9472 int target_count;
e0001a05
NC
9473
9474 if (!insnbuf)
9475 insnbuf = xtensa_insnbuf_alloc (isa);
9476
9477 /* Get the loop offset. */
43cd72b9 9478 loop_offset = get_expanded_loop_offset (tinsn->opcode);
e0001a05 9479
43cd72b9
BW
9480 /* Validate that there really is a LOOP at the loop_offset. Because
9481 loops are not bundleable, we can assume that the instruction will be
9482 in slot 0. */
9483 tinsn_from_chars (&loop_insn, fragP->fr_opcode + loop_offset, 0);
9484 tinsn_immed_from_frag (&loop_insn, fragP, 0);
9485
9486 assert (xtensa_opcode_is_loop (isa, loop_insn.opcode) == 1);
e0001a05
NC
9487 addi_offset += loop_offset;
9488 addmi_offset += loop_offset;
9489
43cd72b9 9490 assert (tinsn->ntok == 2);
b08b5071
BW
9491 if (tinsn->tok[1].X_op == O_constant)
9492 target = tinsn->tok[1].X_add_number;
9493 else if (tinsn->tok[1].X_op == O_symbol)
9494 {
9495 /* Find the fragment. */
9496 symbolS *sym = tinsn->tok[1].X_add_symbol;
9497 assert (S_GET_SEGMENT (sym) == segP
9498 || S_GET_SEGMENT (sym) == absolute_section);
9499 target = (S_GET_VALUE (sym) + tinsn->tok[1].X_add_number);
9500 }
9501 else
9502 {
9503 as_bad (_("invalid expression evaluation type %d"), tinsn->tok[1].X_op);
9504 target = 0;
9505 }
e0001a05
NC
9506
9507 know (symbolP);
9508 know (symbolP->sy_frag);
9509 know (!(S_GET_SEGMENT (symbolP) == absolute_section)
9510 || symbol_get_frag (symbolP) == &zero_address_frag);
9511
9512 loop_length = target - (fragP->fr_address + fragP->fr_fix);
9513 loop_length_hi = loop_length & ~0x0ff;
9514 loop_length_lo = loop_length & 0x0ff;
9515 if (loop_length_lo >= 128)
9516 {
9517 loop_length_lo -= 256;
9518 loop_length_hi += 256;
9519 }
9520
43cd72b9 9521 /* Because addmi sign-extends the immediate, 'loop_length_hi' can be at most
e0001a05
NC
9522 32512. If the loop is larger than that, then we just fail. */
9523 if (loop_length_hi > 32512)
9524 as_bad_where (fragP->fr_file, fragP->fr_line,
9525 _("loop too long for LOOP instruction"));
9526
43cd72b9 9527 tinsn_from_chars (&addi_insn, fragP->fr_opcode + addi_offset, 0);
e0001a05
NC
9528 assert (addi_insn.opcode == xtensa_addi_opcode);
9529
43cd72b9 9530 tinsn_from_chars (&addmi_insn, fragP->fr_opcode + addmi_offset, 0);
e0001a05
NC
9531 assert (addmi_insn.opcode == xtensa_addmi_opcode);
9532
9533 set_expr_const (&addi_insn.tok[2], loop_length_lo);
9534 tinsn_to_insnbuf (&addi_insn, insnbuf);
43cd72b9 9535
e0001a05 9536 fragP->tc_frag_data.is_insn = TRUE;
d77b99c9
BW
9537 xtensa_insnbuf_to_chars
9538 (isa, insnbuf, (unsigned char *) fragP->fr_opcode + addi_offset, 0);
e0001a05
NC
9539
9540 set_expr_const (&addmi_insn.tok[2], loop_length_hi);
9541 tinsn_to_insnbuf (&addmi_insn, insnbuf);
d77b99c9
BW
9542 xtensa_insnbuf_to_chars
9543 (isa, insnbuf, (unsigned char *) fragP->fr_opcode + addmi_offset, 0);
43cd72b9
BW
9544
9545 /* Walk through all of the frags from here to the loop end
9546 and mark them as no_transform to keep them from being modified
9547 by the linker. If we ever have a relocation for the
9548 addi/addmi of the difference of two symbols we can remove this. */
9549
9550 target_count = 0;
9551 for (next_fragP = fragP; next_fragP != NULL;
9552 next_fragP = next_fragP->fr_next)
9553 {
b08b5071 9554 next_fragP->tc_frag_data.is_no_transform = TRUE;
43cd72b9
BW
9555 if (next_fragP->tc_frag_data.is_loop_target)
9556 target_count++;
9557 if (target_count == 2)
9558 break;
9559 }
e0001a05
NC
9560}
9561
b08b5071
BW
9562\f
9563/* A map that keeps information on a per-subsegment basis. This is
9564 maintained during initial assembly, but is invalid once the
9565 subsegments are smashed together. I.E., it cannot be used during
9566 the relaxation. */
e0001a05 9567
b08b5071 9568typedef struct subseg_map_struct
e0001a05 9569{
b08b5071
BW
9570 /* the key */
9571 segT seg;
9572 subsegT subseg;
e0001a05 9573
b08b5071
BW
9574 /* the data */
9575 unsigned flags;
9576 float total_freq; /* fall-through + branch target frequency */
9577 float target_freq; /* branch target frequency alone */
9578
9579 struct subseg_map_struct *next;
9580} subseg_map;
e0001a05 9581
e0001a05 9582
e0001a05
NC
9583static subseg_map *sseg_map = NULL;
9584
43cd72b9 9585static subseg_map *
7fa3d080 9586get_subseg_info (segT seg, subsegT subseg)
e0001a05
NC
9587{
9588 subseg_map *subseg_e;
9589
9590 for (subseg_e = sseg_map; subseg_e; subseg_e = subseg_e->next)
e0001a05 9591 {
43cd72b9 9592 if (seg == subseg_e->seg && subseg == subseg_e->subseg)
b08b5071 9593 break;
e0001a05 9594 }
b08b5071
BW
9595 return subseg_e;
9596}
9597
9598
9599static subseg_map *
9600add_subseg_info (segT seg, subsegT subseg)
9601{
9602 subseg_map *subseg_e = (subseg_map *) xmalloc (sizeof (subseg_map));
43cd72b9
BW
9603 memset (subseg_e, 0, sizeof (subseg_map));
9604 subseg_e->seg = seg;
9605 subseg_e->subseg = subseg;
9606 subseg_e->flags = 0;
9607 /* Start off considering every branch target very important. */
b08b5071
BW
9608 subseg_e->target_freq = 1.0;
9609 subseg_e->total_freq = 1.0;
43cd72b9
BW
9610 subseg_e->next = sseg_map;
9611 sseg_map = subseg_e;
43cd72b9
BW
9612 return subseg_e;
9613}
e0001a05 9614
7fa3d080
BW
9615
9616static unsigned
9617get_last_insn_flags (segT seg, subsegT subseg)
9618{
9619 subseg_map *subseg_e = get_subseg_info (seg, subseg);
b08b5071
BW
9620 if (subseg_e)
9621 return subseg_e->flags;
9622 return 0;
7fa3d080
BW
9623}
9624
9625
43cd72b9 9626static void
7fa3d080
BW
9627set_last_insn_flags (segT seg,
9628 subsegT subseg,
9629 unsigned fl,
9630 bfd_boolean val)
43cd72b9
BW
9631{
9632 subseg_map *subseg_e = get_subseg_info (seg, subseg);
b08b5071
BW
9633 if (! subseg_e)
9634 subseg_e = add_subseg_info (seg, subseg);
e0001a05
NC
9635 if (val)
9636 subseg_e->flags |= fl;
9637 else
9638 subseg_e->flags &= ~fl;
9639}
9640
b08b5071
BW
9641
9642static float
9643get_subseg_total_freq (segT seg, subsegT subseg)
9644{
9645 subseg_map *subseg_e = get_subseg_info (seg, subseg);
9646 if (subseg_e)
9647 return subseg_e->total_freq;
9648 return 1.0;
9649}
9650
9651
9652static float
9653get_subseg_target_freq (segT seg, subsegT subseg)
9654{
9655 subseg_map *subseg_e = get_subseg_info (seg, subseg);
9656 if (subseg_e)
9657 return subseg_e->target_freq;
9658 return 1.0;
9659}
9660
9661
9662static void
9663set_subseg_freq (segT seg, subsegT subseg, float total_f, float target_f)
9664{
9665 subseg_map *subseg_e = get_subseg_info (seg, subseg);
9666 if (! subseg_e)
9667 subseg_e = add_subseg_info (seg, subseg);
9668 subseg_e->total_freq = total_f;
9669 subseg_e->target_freq = target_f;
9670}
9671
e0001a05
NC
9672\f
9673/* Segment Lists and emit_state Stuff. */
9674
e0001a05 9675static void
7fa3d080 9676xtensa_move_seg_list_to_beginning (seg_list *head)
e0001a05
NC
9677{
9678 head = head->next;
9679 while (head)
9680 {
9681 segT literal_section = head->seg;
9682
9683 /* Move the literal section to the front of the section list. */
9684 assert (literal_section);
69852798
AM
9685 if (literal_section != stdoutput->sections)
9686 {
9687 bfd_section_list_remove (stdoutput, literal_section);
9688 bfd_section_list_prepend (stdoutput, literal_section);
9689 }
e0001a05
NC
9690 head = head->next;
9691 }
9692}
9693
9694
7fa3d080
BW
9695static void mark_literal_frags (seg_list *);
9696
9697static void
9698xtensa_move_literals (void)
e0001a05
NC
9699{
9700 seg_list *segment;
9701 frchainS *frchain_from, *frchain_to;
9702 fragS *search_frag, *next_frag, *last_frag, *literal_pool, *insert_after;
9703 fragS **frag_splice;
9704 emit_state state;
9705 segT dest_seg;
9706 fixS *fix, *next_fix, **fix_splice;
82e7541d 9707 sym_list *lit;
e0001a05 9708
a7877748 9709 mark_literal_frags (literal_head->next);
e0001a05
NC
9710
9711 if (use_literal_section)
9712 return;
9713
74869ac7 9714 for (segment = literal_head->next; segment; segment = segment->next)
e0001a05 9715 {
74869ac7
BW
9716 /* Keep the literals for .init and .fini in separate sections. */
9717 if (!strcmp (segment_name (segment->seg), INIT_SECTION_NAME)
9718 || !strcmp (segment_name (segment->seg), FINI_SECTION_NAME))
9719 continue;
9720
e0001a05
NC
9721 frchain_from = seg_info (segment->seg)->frchainP;
9722 search_frag = frchain_from->frch_root;
9723 literal_pool = NULL;
9724 frchain_to = NULL;
9725 frag_splice = &(frchain_from->frch_root);
9726
9727 while (!search_frag->tc_frag_data.literal_frag)
9728 {
9729 assert (search_frag->fr_fix == 0
9730 || search_frag->fr_type == rs_align);
9731 search_frag = search_frag->fr_next;
9732 }
9733
9734 assert (search_frag->tc_frag_data.literal_frag->fr_subtype
9735 == RELAX_LITERAL_POOL_BEGIN);
9736 xtensa_switch_section_emit_state (&state, segment->seg, 0);
9737
9738 /* Make sure that all the frags in this series are closed, and
9739 that there is at least one left over of zero-size. This
9740 prevents us from making a segment with an frchain without any
9741 frags in it. */
9742 frag_variant (rs_fill, 0, 0, 0, NULL, 0, NULL);
43cd72b9 9743 xtensa_set_frag_assembly_state (frag_now);
e0001a05
NC
9744 last_frag = frag_now;
9745 frag_variant (rs_fill, 0, 0, 0, NULL, 0, NULL);
43cd72b9 9746 xtensa_set_frag_assembly_state (frag_now);
e0001a05 9747
43cd72b9 9748 while (search_frag != frag_now)
e0001a05
NC
9749 {
9750 next_frag = search_frag->fr_next;
9751
43cd72b9 9752 /* First, move the frag out of the literal section and
e0001a05
NC
9753 to the appropriate place. */
9754 if (search_frag->tc_frag_data.literal_frag)
9755 {
9756 literal_pool = search_frag->tc_frag_data.literal_frag;
9757 assert (literal_pool->fr_subtype == RELAX_LITERAL_POOL_BEGIN);
dd49a749
BW
9758 frchain_to = literal_pool->tc_frag_data.lit_frchain;
9759 assert (frchain_to);
e0001a05
NC
9760 }
9761 insert_after = literal_pool;
43cd72b9 9762
e0001a05
NC
9763 while (insert_after->fr_next->fr_subtype != RELAX_LITERAL_POOL_END)
9764 insert_after = insert_after->fr_next;
9765
dd49a749 9766 dest_seg = insert_after->fr_next->tc_frag_data.lit_seg;
43cd72b9 9767
e0001a05
NC
9768 *frag_splice = next_frag;
9769 search_frag->fr_next = insert_after->fr_next;
9770 insert_after->fr_next = search_frag;
9771 search_frag->tc_frag_data.lit_seg = dest_seg;
9772
9773 /* Now move any fixups associated with this frag to the
9774 right section. */
9775 fix = frchain_from->fix_root;
9776 fix_splice = &(frchain_from->fix_root);
9777 while (fix)
9778 {
9779 next_fix = fix->fx_next;
9780 if (fix->fx_frag == search_frag)
9781 {
9782 *fix_splice = next_fix;
9783 fix->fx_next = frchain_to->fix_root;
9784 frchain_to->fix_root = fix;
9785 if (frchain_to->fix_tail == NULL)
9786 frchain_to->fix_tail = fix;
9787 }
9788 else
9789 fix_splice = &(fix->fx_next);
9790 fix = next_fix;
9791 }
9792 search_frag = next_frag;
9793 }
9794
9795 if (frchain_from->fix_root != NULL)
9796 {
9797 frchain_from = seg_info (segment->seg)->frchainP;
9798 as_warn (_("fixes not all moved from %s"), segment->seg->name);
9799
9800 assert (frchain_from->fix_root == NULL);
9801 }
9802 frchain_from->fix_tail = NULL;
9803 xtensa_restore_emit_state (&state);
e0001a05
NC
9804 }
9805
82e7541d
BW
9806 /* Now fix up the SEGMENT value for all the literal symbols. */
9807 for (lit = literal_syms; lit; lit = lit->next)
9808 {
9809 symbolS *lit_sym = lit->sym;
9810 segT dest_seg = symbol_get_frag (lit_sym)->tc_frag_data.lit_seg;
43cd72b9
BW
9811 if (dest_seg)
9812 S_SET_SEGMENT (lit_sym, dest_seg);
82e7541d 9813 }
e0001a05
NC
9814}
9815
9816
a7877748
BW
9817/* Walk over all the frags for segments in a list and mark them as
9818 containing literals. As clunky as this is, we can't rely on frag_var
9819 and frag_variant to get called in all situations. */
9820
9821static void
7fa3d080 9822mark_literal_frags (seg_list *segment)
a7877748
BW
9823{
9824 frchainS *frchain_from;
9825 fragS *search_frag;
9826
9827 while (segment)
9828 {
9829 frchain_from = seg_info (segment->seg)->frchainP;
9830 search_frag = frchain_from->frch_root;
c138bc38 9831 while (search_frag)
a7877748
BW
9832 {
9833 search_frag->tc_frag_data.is_literal = TRUE;
9834 search_frag = search_frag->fr_next;
9835 }
9836 segment = segment->next;
9837 }
9838}
9839
9840
e0001a05 9841static void
7fa3d080 9842xtensa_reorder_seg_list (seg_list *head, segT after)
e0001a05
NC
9843{
9844 /* Move all of the sections in the section list to come
9845 after "after" in the gnu segment list. */
9846
9847 head = head->next;
9848 while (head)
9849 {
9850 segT literal_section = head->seg;
9851
9852 /* Move the literal section after "after". */
9853 assert (literal_section);
9854 if (literal_section != after)
9855 {
69852798
AM
9856 bfd_section_list_remove (stdoutput, literal_section);
9857 bfd_section_list_insert_after (stdoutput, after, literal_section);
e0001a05
NC
9858 }
9859
9860 head = head->next;
9861 }
9862}
9863
9864
9865/* Push all the literal segments to the end of the gnu list. */
9866
7fa3d080
BW
9867static void
9868xtensa_reorder_segments (void)
e0001a05
NC
9869{
9870 segT sec;
b08b5071 9871 segT last_sec = 0;
e0001a05
NC
9872 int old_count = 0;
9873 int new_count = 0;
9874
9875 for (sec = stdoutput->sections; sec != NULL; sec = sec->next)
b08b5071
BW
9876 {
9877 last_sec = sec;
9878 old_count++;
9879 }
e0001a05
NC
9880
9881 /* Now that we have the last section, push all the literal
9882 sections to the end. */
e0001a05 9883 xtensa_reorder_seg_list (literal_head, last_sec);
e0001a05
NC
9884
9885 /* Now perform the final error check. */
9886 for (sec = stdoutput->sections; sec != NULL; sec = sec->next)
9887 new_count++;
9888 assert (new_count == old_count);
9889}
9890
9891
e0001a05
NC
9892/* Change the emit state (seg, subseg, and frag related stuff) to the
9893 correct location. Return a emit_state which can be passed to
9894 xtensa_restore_emit_state to return to current fragment. */
9895
7fa3d080
BW
9896static void
9897xtensa_switch_to_literal_fragment (emit_state *result)
43cd72b9
BW
9898{
9899 if (directive_state[directive_absolute_literals])
9900 {
74869ac7
BW
9901 segT lit4_seg = cache_literal_section (TRUE);
9902 xtensa_switch_section_emit_state (result, lit4_seg, 0);
43cd72b9
BW
9903 }
9904 else
9905 xtensa_switch_to_non_abs_literal_fragment (result);
9906
9907 /* Do a 4-byte align here. */
9908 frag_align (2, 0, 0);
9909 record_alignment (now_seg, 2);
9910}
9911
9912
7fa3d080
BW
9913static void
9914xtensa_switch_to_non_abs_literal_fragment (emit_state *result)
e0001a05 9915{
e0001a05
NC
9916 static bfd_boolean recursive = FALSE;
9917 fragS *pool_location = get_literal_pool_location (now_seg);
74869ac7 9918 segT lit_seg;
c138bc38 9919 bfd_boolean is_init =
e0001a05 9920 (now_seg && !strcmp (segment_name (now_seg), INIT_SECTION_NAME));
c138bc38 9921 bfd_boolean is_fini =
e0001a05 9922 (now_seg && !strcmp (segment_name (now_seg), FINI_SECTION_NAME));
e0001a05 9923
43cd72b9
BW
9924 if (pool_location == NULL
9925 && !use_literal_section
e0001a05
NC
9926 && !recursive
9927 && !is_init && ! is_fini)
9928 {
43cd72b9 9929 as_bad (_("literal pool location required for text-section-literals; specify with .literal_position"));
74869ac7
BW
9930
9931 /* When we mark a literal pool location, we want to put a frag in
9932 the literal pool that points to it. But to do that, we want to
9933 switch_to_literal_fragment. But literal sections don't have
9934 literal pools, so their location is always null, so we would
9935 recurse forever. This is kind of hacky, but it works. */
9936
e0001a05 9937 recursive = TRUE;
61846f28 9938 xtensa_mark_literal_pool_location ();
e0001a05
NC
9939 recursive = FALSE;
9940 }
9941
74869ac7
BW
9942 lit_seg = cache_literal_section (FALSE);
9943 xtensa_switch_section_emit_state (result, lit_seg, 0);
e0001a05 9944
43cd72b9
BW
9945 if (!use_literal_section
9946 && !is_init && !is_fini
9947 && get_literal_pool_location (now_seg) != pool_location)
e0001a05
NC
9948 {
9949 /* Close whatever frag is there. */
9950 frag_variant (rs_fill, 0, 0, 0, NULL, 0, NULL);
43cd72b9 9951 xtensa_set_frag_assembly_state (frag_now);
e0001a05
NC
9952 frag_now->tc_frag_data.literal_frag = pool_location;
9953 frag_variant (rs_fill, 0, 0, 0, NULL, 0, NULL);
43cd72b9 9954 xtensa_set_frag_assembly_state (frag_now);
e0001a05 9955 }
e0001a05
NC
9956}
9957
9958
9959/* Call this function before emitting data into the literal section.
9960 This is a helper function for xtensa_switch_to_literal_fragment.
9961 This is similar to a .section new_now_seg subseg. */
9962
7fa3d080
BW
9963static void
9964xtensa_switch_section_emit_state (emit_state *state,
9965 segT new_now_seg,
9966 subsegT new_now_subseg)
e0001a05
NC
9967{
9968 state->name = now_seg->name;
9969 state->now_seg = now_seg;
9970 state->now_subseg = now_subseg;
9971 state->generating_literals = generating_literals;
9972 generating_literals++;
2b0210eb 9973 subseg_set (new_now_seg, new_now_subseg);
e0001a05
NC
9974}
9975
9976
9977/* Use to restore the emitting into the normal place. */
9978
7fa3d080
BW
9979static void
9980xtensa_restore_emit_state (emit_state *state)
e0001a05
NC
9981{
9982 generating_literals = state->generating_literals;
2b0210eb 9983 subseg_set (state->now_seg, state->now_subseg);
e0001a05
NC
9984}
9985
9986
74869ac7 9987/* Predicate function used to look up a section in a particular group. */
e0001a05 9988
74869ac7
BW
9989static bfd_boolean
9990match_section_group (bfd *abfd ATTRIBUTE_UNUSED, asection *sec, void *inf)
e0001a05 9991{
74869ac7
BW
9992 const char *gname = inf;
9993 const char *group_name = elf_group_name (sec);
9994
9995 return (group_name == gname
9996 || (group_name != NULL
9997 && gname != NULL
9998 && strcmp (group_name, gname) == 0));
9999}
e0001a05 10000
e0001a05 10001
74869ac7
BW
10002/* Get the literal section to be used for the current text section.
10003 The result may be cached in the default_lit_sections structure. */
10004
10005static segT
10006cache_literal_section (bfd_boolean use_abs_literals)
10007{
10008 const char *text_name, *group_name = 0;
10009 char *base_name, *name, *suffix;
10010 segT *pcached;
10011 segT seg, current_section;
10012 int current_subsec;
10013 bfd_boolean linkonce = FALSE;
10014
10015 /* Save the current section/subsection. */
10016 current_section = now_seg;
10017 current_subsec = now_subseg;
10018
10019 /* Clear the cached values if they are no longer valid. */
10020 if (now_seg != default_lit_sections.current_text_seg)
b08b5071 10021 {
74869ac7
BW
10022 default_lit_sections.current_text_seg = now_seg;
10023 default_lit_sections.lit_seg = NULL;
10024 default_lit_sections.lit4_seg = NULL;
10025 }
10026
10027 /* Check if the literal section is already cached. */
10028 if (use_abs_literals)
10029 pcached = &default_lit_sections.lit4_seg;
10030 else
10031 pcached = &default_lit_sections.lit_seg;
10032
10033 if (*pcached)
10034 return *pcached;
10035
10036 text_name = default_lit_sections.lit_prefix;
10037 if (! text_name || ! *text_name)
10038 {
10039 text_name = segment_name (current_section);
10040 group_name = elf_group_name (current_section);
10041 linkonce = (current_section->flags & SEC_LINK_ONCE) != 0;
10042 }
10043
10044 base_name = use_abs_literals ? ".lit4" : ".literal";
10045 if (group_name)
10046 {
10047 name = xmalloc (strlen (base_name) + strlen (group_name) + 2);
10048 sprintf (name, "%s.%s", base_name, group_name);
10049 }
10050 else if (strncmp (text_name, ".gnu.linkonce.", linkonce_len) == 0)
10051 {
10052 suffix = strchr (text_name + linkonce_len, '.');
10053
10054 name = xmalloc (linkonce_len + strlen (base_name) + 1
10055 + (suffix ? strlen (suffix) : 0));
10056 strcpy (name, ".gnu.linkonce");
10057 strcat (name, base_name);
10058 if (suffix)
10059 strcat (name, suffix);
10060 linkonce = TRUE;
10061 }
10062 else
10063 {
10064 /* If the section name ends with ".text", then replace that suffix
10065 instead of appending an additional suffix. */
10066 size_t len = strlen (text_name);
10067 if (len >= 5 && strcmp (text_name + len - 5, ".text") == 0)
10068 len -= 5;
10069
10070 name = xmalloc (len + strlen (base_name) + 1);
10071 strcpy (name, text_name);
10072 strcpy (name + len, base_name);
b08b5071 10073 }
e0001a05 10074
74869ac7
BW
10075 /* Canonicalize section names to allow renaming literal sections.
10076 The group name, if any, came from the current text section and
10077 has already been canonicalized. */
10078 name = tc_canonicalize_symbol_name (name);
10079
10080 seg = bfd_get_section_by_name_if (stdoutput, name, match_section_group,
10081 (void *) group_name);
10082 if (! seg)
e0001a05 10083 {
74869ac7
BW
10084 flagword flags;
10085
10086 seg = subseg_force_new (name, 0);
10087
10088 if (! use_abs_literals)
b08b5071 10089 {
74869ac7 10090 /* Add the newly created literal segment to the list. */
b08b5071
BW
10091 seg_list *n = (seg_list *) xmalloc (sizeof (seg_list));
10092 n->seg = seg;
74869ac7
BW
10093 n->next = literal_head->next;
10094 literal_head->next = n;
b08b5071 10095 }
74869ac7
BW
10096
10097 flags = (SEC_HAS_CONTENTS | SEC_READONLY | SEC_ALLOC | SEC_LOAD
10098 | (linkonce ? (SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD) : 0)
10099 | (use_abs_literals ? SEC_DATA : SEC_CODE));
10100
10101 elf_group_name (seg) = group_name;
10102
10103 bfd_set_section_flags (stdoutput, seg, flags);
b08b5071 10104 bfd_set_section_alignment (stdoutput, seg, 2);
e0001a05
NC
10105 }
10106
74869ac7 10107 *pcached = seg;
b08b5071 10108 subseg_set (current_section, current_subsec);
74869ac7 10109 return seg;
e0001a05
NC
10110}
10111
43cd72b9
BW
10112\f
10113/* Property Tables Stuff. */
10114
7fa3d080
BW
10115#define XTENSA_INSN_SEC_NAME ".xt.insn"
10116#define XTENSA_LIT_SEC_NAME ".xt.lit"
10117#define XTENSA_PROP_SEC_NAME ".xt.prop"
10118
10119typedef bfd_boolean (*frag_predicate) (const fragS *);
10120typedef void (*frag_flags_fn) (const fragS *, frag_flags *);
10121
b08b5071 10122static bfd_boolean get_frag_is_literal (const fragS *);
7fa3d080
BW
10123static void xtensa_create_property_segments
10124 (frag_predicate, frag_predicate, const char *, xt_section_type);
10125static void xtensa_create_xproperty_segments
10126 (frag_flags_fn, const char *, xt_section_type);
10127static segment_info_type *retrieve_segment_info (segT);
7fa3d080
BW
10128static bfd_boolean section_has_property (segT, frag_predicate);
10129static bfd_boolean section_has_xproperty (segT, frag_flags_fn);
10130static void add_xt_block_frags
10131 (segT, segT, xtensa_block_info **, frag_predicate, frag_predicate);
10132static bfd_boolean xtensa_frag_flags_is_empty (const frag_flags *);
10133static void xtensa_frag_flags_init (frag_flags *);
10134static void get_frag_property_flags (const fragS *, frag_flags *);
10135static bfd_vma frag_flags_to_number (const frag_flags *);
10136static void add_xt_prop_frags
10137 (segT, segT, xtensa_block_info **, frag_flags_fn);
10138
10139/* Set up property tables after relaxation. */
10140
10141void
10142xtensa_post_relax_hook (void)
10143{
10144 xtensa_move_seg_list_to_beginning (literal_head);
7fa3d080
BW
10145
10146 xtensa_find_unmarked_state_frags ();
10147
b29757dc
BW
10148 xtensa_create_property_segments (get_frag_is_literal,
10149 NULL,
10150 XTENSA_LIT_SEC_NAME,
10151 xt_literal_sec);
7fa3d080
BW
10152 xtensa_create_xproperty_segments (get_frag_property_flags,
10153 XTENSA_PROP_SEC_NAME,
10154 xt_prop_sec);
10155
10156 if (warn_unaligned_branch_targets)
10157 bfd_map_over_sections (stdoutput, xtensa_find_unaligned_branch_targets, 0);
10158 bfd_map_over_sections (stdoutput, xtensa_find_unaligned_loops, 0);
10159}
10160
10161
43cd72b9
BW
10162/* This function is only meaningful after xtensa_move_literals. */
10163
10164static bfd_boolean
7fa3d080 10165get_frag_is_literal (const fragS *fragP)
43cd72b9
BW
10166{
10167 assert (fragP != NULL);
10168 return fragP->tc_frag_data.is_literal;
10169}
10170
10171
43cd72b9 10172static void
7fa3d080
BW
10173xtensa_create_property_segments (frag_predicate property_function,
10174 frag_predicate end_property_function,
10175 const char *section_name_base,
10176 xt_section_type sec_type)
43cd72b9
BW
10177{
10178 segT *seclist;
10179
10180 /* Walk over all of the current segments.
10181 Walk over each fragment
10182 For each non-empty fragment,
10183 Build a property record (append where possible). */
10184
10185 for (seclist = &stdoutput->sections;
10186 seclist && *seclist;
10187 seclist = &(*seclist)->next)
10188 {
10189 segT sec = *seclist;
10190 flagword flags;
10191
10192 flags = bfd_get_section_flags (stdoutput, sec);
10193 if (flags & SEC_DEBUGGING)
10194 continue;
10195 if (!(flags & SEC_ALLOC))
10196 continue;
10197
10198 if (section_has_property (sec, property_function))
10199 {
74869ac7
BW
10200 segT insn_sec =
10201 xtensa_get_property_section (sec, section_name_base);
43cd72b9
BW
10202 segment_info_type *xt_seg_info = retrieve_segment_info (insn_sec);
10203 xtensa_block_info **xt_blocks =
10204 &xt_seg_info->tc_segment_info_data.blocks[sec_type];
10205 /* Walk over all of the frchains here and add new sections. */
10206 add_xt_block_frags (sec, insn_sec, xt_blocks, property_function,
10207 end_property_function);
10208 }
10209 }
10210
10211 /* Now we fill them out.... */
10212
10213 for (seclist = &stdoutput->sections;
10214 seclist && *seclist;
10215 seclist = &(*seclist)->next)
10216 {
10217 segment_info_type *seginfo;
10218 xtensa_block_info *block;
10219 segT sec = *seclist;
10220
10221 seginfo = seg_info (sec);
10222 block = seginfo->tc_segment_info_data.blocks[sec_type];
10223
10224 if (block)
10225 {
10226 xtensa_block_info *cur_block;
10227 /* This is a section with some data. */
10228 int num_recs = 0;
d77b99c9 10229 bfd_size_type rec_size;
43cd72b9
BW
10230
10231 for (cur_block = block; cur_block; cur_block = cur_block->next)
10232 num_recs++;
10233
10234 rec_size = num_recs * 8;
10235 bfd_set_section_size (stdoutput, sec, rec_size);
10236
10237 /* In order to make this work with the assembler, we have to
10238 build some frags and then build the "fixups" for it. It
10239 would be easier to just set the contents then set the
10240 arlents. */
10241
10242 if (num_recs)
10243 {
10244 /* Allocate a fragment and leak it. */
10245 fragS *fragP;
d77b99c9 10246 bfd_size_type frag_size;
43cd72b9
BW
10247 fixS *fixes;
10248 frchainS *frchainP;
10249 int i;
10250 char *frag_data;
10251
10252 frag_size = sizeof (fragS) + rec_size;
10253 fragP = (fragS *) xmalloc (frag_size);
e0001a05 10254
43cd72b9
BW
10255 memset (fragP, 0, frag_size);
10256 fragP->fr_address = 0;
10257 fragP->fr_next = NULL;
10258 fragP->fr_fix = rec_size;
10259 fragP->fr_var = 0;
10260 fragP->fr_type = rs_fill;
10261 /* The rest are zeros. */
e0001a05 10262
43cd72b9
BW
10263 frchainP = seginfo->frchainP;
10264 frchainP->frch_root = fragP;
10265 frchainP->frch_last = fragP;
e0001a05 10266
43cd72b9
BW
10267 fixes = (fixS *) xmalloc (sizeof (fixS) * num_recs);
10268 memset (fixes, 0, sizeof (fixS) * num_recs);
e0001a05 10269
43cd72b9
BW
10270 seginfo->fix_root = fixes;
10271 seginfo->fix_tail = &fixes[num_recs - 1];
10272 cur_block = block;
10273 frag_data = &fragP->fr_literal[0];
10274 for (i = 0; i < num_recs; i++)
10275 {
10276 fixS *fix = &fixes[i];
10277 assert (cur_block);
e0001a05 10278
43cd72b9
BW
10279 /* Write the fixup. */
10280 if (i != num_recs - 1)
10281 fix->fx_next = &fixes[i + 1];
10282 else
10283 fix->fx_next = NULL;
10284 fix->fx_size = 4;
10285 fix->fx_done = 0;
10286 fix->fx_frag = fragP;
10287 fix->fx_where = i * 8;
10288 fix->fx_addsy = section_symbol (cur_block->sec);
10289 fix->fx_offset = cur_block->offset;
10290 fix->fx_r_type = BFD_RELOC_32;
10291 fix->fx_file = "Internal Assembly";
10292 fix->fx_line = 0;
e0001a05 10293
43cd72b9
BW
10294 /* Write the length. */
10295 md_number_to_chars (&frag_data[4 + 8 * i],
10296 cur_block->size, 4);
10297 cur_block = cur_block->next;
10298 }
10299 }
10300 }
10301 }
e0001a05
NC
10302}
10303
10304
7fa3d080
BW
10305static void
10306xtensa_create_xproperty_segments (frag_flags_fn flag_fn,
10307 const char *section_name_base,
10308 xt_section_type sec_type)
e0001a05
NC
10309{
10310 segT *seclist;
10311
10312 /* Walk over all of the current segments.
43cd72b9
BW
10313 Walk over each fragment.
10314 For each fragment that has instructions,
10315 build an instruction record (append where possible). */
e0001a05
NC
10316
10317 for (seclist = &stdoutput->sections;
10318 seclist && *seclist;
10319 seclist = &(*seclist)->next)
10320 {
10321 segT sec = *seclist;
43cd72b9
BW
10322 flagword flags;
10323
10324 flags = bfd_get_section_flags (stdoutput, sec);
6624cbde
BW
10325 if ((flags & SEC_DEBUGGING)
10326 || !(flags & SEC_ALLOC)
10327 || (flags & SEC_MERGE))
43cd72b9
BW
10328 continue;
10329
10330 if (section_has_xproperty (sec, flag_fn))
e0001a05 10331 {
74869ac7
BW
10332 segT insn_sec =
10333 xtensa_get_property_section (sec, section_name_base);
e0001a05 10334 segment_info_type *xt_seg_info = retrieve_segment_info (insn_sec);
43cd72b9 10335 xtensa_block_info **xt_blocks =
e0001a05
NC
10336 &xt_seg_info->tc_segment_info_data.blocks[sec_type];
10337 /* Walk over all of the frchains here and add new sections. */
43cd72b9 10338 add_xt_prop_frags (sec, insn_sec, xt_blocks, flag_fn);
e0001a05
NC
10339 }
10340 }
10341
10342 /* Now we fill them out.... */
10343
10344 for (seclist = &stdoutput->sections;
10345 seclist && *seclist;
10346 seclist = &(*seclist)->next)
10347 {
10348 segment_info_type *seginfo;
10349 xtensa_block_info *block;
10350 segT sec = *seclist;
43cd72b9 10351
e0001a05
NC
10352 seginfo = seg_info (sec);
10353 block = seginfo->tc_segment_info_data.blocks[sec_type];
10354
10355 if (block)
10356 {
10357 xtensa_block_info *cur_block;
10358 /* This is a section with some data. */
43cd72b9 10359 int num_recs = 0;
d77b99c9 10360 bfd_size_type rec_size;
e0001a05
NC
10361
10362 for (cur_block = block; cur_block; cur_block = cur_block->next)
10363 num_recs++;
10364
43cd72b9 10365 rec_size = num_recs * (8 + 4);
e0001a05
NC
10366 bfd_set_section_size (stdoutput, sec, rec_size);
10367
43cd72b9
BW
10368 /* elf_section_data (sec)->this_hdr.sh_entsize = 12; */
10369
10370 /* In order to make this work with the assembler, we have to build
10371 some frags then build the "fixups" for it. It would be easier to
10372 just set the contents then set the arlents. */
e0001a05
NC
10373
10374 if (num_recs)
10375 {
43cd72b9 10376 /* Allocate a fragment and (unfortunately) leak it. */
e0001a05 10377 fragS *fragP;
d77b99c9 10378 bfd_size_type frag_size;
e0001a05
NC
10379 fixS *fixes;
10380 frchainS *frchainP;
43cd72b9 10381 int i;
e0001a05
NC
10382 char *frag_data;
10383
10384 frag_size = sizeof (fragS) + rec_size;
10385 fragP = (fragS *) xmalloc (frag_size);
10386
10387 memset (fragP, 0, frag_size);
10388 fragP->fr_address = 0;
10389 fragP->fr_next = NULL;
10390 fragP->fr_fix = rec_size;
10391 fragP->fr_var = 0;
10392 fragP->fr_type = rs_fill;
43cd72b9 10393 /* The rest are zeros. */
e0001a05
NC
10394
10395 frchainP = seginfo->frchainP;
10396 frchainP->frch_root = fragP;
10397 frchainP->frch_last = fragP;
10398
10399 fixes = (fixS *) xmalloc (sizeof (fixS) * num_recs);
10400 memset (fixes, 0, sizeof (fixS) * num_recs);
10401
10402 seginfo->fix_root = fixes;
10403 seginfo->fix_tail = &fixes[num_recs - 1];
10404 cur_block = block;
10405 frag_data = &fragP->fr_literal[0];
10406 for (i = 0; i < num_recs; i++)
10407 {
10408 fixS *fix = &fixes[i];
10409 assert (cur_block);
10410
10411 /* Write the fixup. */
10412 if (i != num_recs - 1)
10413 fix->fx_next = &fixes[i + 1];
10414 else
10415 fix->fx_next = NULL;
10416 fix->fx_size = 4;
10417 fix->fx_done = 0;
10418 fix->fx_frag = fragP;
43cd72b9 10419 fix->fx_where = i * (8 + 4);
e0001a05
NC
10420 fix->fx_addsy = section_symbol (cur_block->sec);
10421 fix->fx_offset = cur_block->offset;
10422 fix->fx_r_type = BFD_RELOC_32;
10423 fix->fx_file = "Internal Assembly";
10424 fix->fx_line = 0;
10425
10426 /* Write the length. */
43cd72b9 10427 md_number_to_chars (&frag_data[4 + (8+4) * i],
e0001a05 10428 cur_block->size, 4);
43cd72b9
BW
10429 md_number_to_chars (&frag_data[8 + (8+4) * i],
10430 frag_flags_to_number (&cur_block->flags),
10431 4);
e0001a05
NC
10432 cur_block = cur_block->next;
10433 }
10434 }
10435 }
10436 }
10437}
10438
10439
7fa3d080
BW
10440static segment_info_type *
10441retrieve_segment_info (segT seg)
e0001a05
NC
10442{
10443 segment_info_type *seginfo;
10444 seginfo = (segment_info_type *) bfd_get_section_userdata (stdoutput, seg);
10445 if (!seginfo)
10446 {
10447 frchainS *frchainP;
10448
10449 seginfo = (segment_info_type *) xmalloc (sizeof (*seginfo));
7fa3d080 10450 memset ((void *) seginfo, 0, sizeof (*seginfo));
e0001a05
NC
10451 seginfo->fix_root = NULL;
10452 seginfo->fix_tail = NULL;
10453 seginfo->bfd_section = seg;
10454 seginfo->sym = 0;
10455 /* We will not be dealing with these, only our special ones. */
65ec77d2 10456 bfd_set_section_userdata (stdoutput, seg, (void *) seginfo);
e0001a05
NC
10457
10458 frchainP = (frchainS *) xmalloc (sizeof (frchainS));
10459 frchainP->frch_root = NULL;
10460 frchainP->frch_last = NULL;
10461 frchainP->frch_next = NULL;
e0001a05
NC
10462 frchainP->frch_subseg = 0;
10463 frchainP->fix_root = NULL;
10464 frchainP->fix_tail = NULL;
10465 /* Do not init the objstack. */
10466 /* obstack_begin (&frchainP->frch_obstack, chunksize); */
10467 /* frchainP->frch_frag_now = fragP; */
10468 frchainP->frch_frag_now = NULL;
10469
10470 seginfo->frchainP = frchainP;
10471 }
10472
10473 return seginfo;
10474}
10475
10476
7fa3d080
BW
10477static bfd_boolean
10478section_has_property (segT sec, frag_predicate property_function)
e0001a05
NC
10479{
10480 segment_info_type *seginfo = seg_info (sec);
10481 fragS *fragP;
10482
10483 if (seginfo && seginfo->frchainP)
10484 {
10485 for (fragP = seginfo->frchainP->frch_root; fragP; fragP = fragP->fr_next)
10486 {
10487 if (property_function (fragP)
10488 && (fragP->fr_type != rs_fill || fragP->fr_fix != 0))
10489 return TRUE;
10490 }
10491 }
10492 return FALSE;
10493}
10494
10495
7fa3d080
BW
10496static bfd_boolean
10497section_has_xproperty (segT sec, frag_flags_fn property_function)
43cd72b9
BW
10498{
10499 segment_info_type *seginfo = seg_info (sec);
10500 fragS *fragP;
10501
10502 if (seginfo && seginfo->frchainP)
10503 {
10504 for (fragP = seginfo->frchainP->frch_root; fragP; fragP = fragP->fr_next)
10505 {
10506 frag_flags prop_flags;
10507 property_function (fragP, &prop_flags);
10508 if (!xtensa_frag_flags_is_empty (&prop_flags))
10509 return TRUE;
10510 }
10511 }
10512 return FALSE;
10513}
10514
10515
e0001a05
NC
10516/* Two types of block sections exist right now: literal and insns. */
10517
7fa3d080
BW
10518static void
10519add_xt_block_frags (segT sec,
10520 segT xt_block_sec,
10521 xtensa_block_info **xt_block,
10522 frag_predicate property_function,
10523 frag_predicate end_property_function)
e0001a05
NC
10524{
10525 segment_info_type *seg_info;
10526 segment_info_type *xt_seg_info;
10527 bfd_vma seg_offset;
10528 fragS *fragP;
10529
10530 xt_seg_info = retrieve_segment_info (xt_block_sec);
10531 seg_info = retrieve_segment_info (sec);
10532
10533 /* Build it if needed. */
10534 while (*xt_block != NULL)
10535 xt_block = &(*xt_block)->next;
10536 /* We are either at NULL at the beginning or at the end. */
10537
10538 /* Walk through the frags. */
10539 seg_offset = 0;
10540
10541 if (seg_info->frchainP)
10542 {
10543 for (fragP = seg_info->frchainP->frch_root;
10544 fragP;
10545 fragP = fragP->fr_next)
10546 {
10547 if (property_function (fragP)
10548 && (fragP->fr_type != rs_fill || fragP->fr_fix != 0))
10549 {
10550 if (*xt_block != NULL)
10551 {
10552 if ((*xt_block)->offset + (*xt_block)->size
10553 == fragP->fr_address)
10554 (*xt_block)->size += fragP->fr_fix;
10555 else
10556 xt_block = &((*xt_block)->next);
10557 }
10558 if (*xt_block == NULL)
10559 {
43cd72b9
BW
10560 xtensa_block_info *new_block = (xtensa_block_info *)
10561 xmalloc (sizeof (xtensa_block_info));
10562 new_block->sec = sec;
10563 new_block->offset = fragP->fr_address;
10564 new_block->size = fragP->fr_fix;
10565 new_block->next = NULL;
10566 xtensa_frag_flags_init (&new_block->flags);
10567 *xt_block = new_block;
10568 }
10569 if (end_property_function
10570 && end_property_function (fragP))
10571 {
10572 xt_block = &((*xt_block)->next);
10573 }
10574 }
10575 }
10576 }
10577}
10578
10579
10580/* Break the encapsulation of add_xt_prop_frags here. */
10581
7fa3d080
BW
10582static bfd_boolean
10583xtensa_frag_flags_is_empty (const frag_flags *prop_flags)
43cd72b9
BW
10584{
10585 if (prop_flags->is_literal
10586 || prop_flags->is_insn
10587 || prop_flags->is_data
10588 || prop_flags->is_unreachable)
10589 return FALSE;
10590 return TRUE;
10591}
10592
10593
7fa3d080
BW
10594static void
10595xtensa_frag_flags_init (frag_flags *prop_flags)
43cd72b9
BW
10596{
10597 memset (prop_flags, 0, sizeof (frag_flags));
10598}
10599
10600
7fa3d080
BW
10601static void
10602get_frag_property_flags (const fragS *fragP, frag_flags *prop_flags)
43cd72b9
BW
10603{
10604 xtensa_frag_flags_init (prop_flags);
10605 if (fragP->tc_frag_data.is_literal)
10606 prop_flags->is_literal = TRUE;
10607 if (fragP->tc_frag_data.is_unreachable)
7fa3d080 10608 prop_flags->is_unreachable = TRUE;
43cd72b9
BW
10609 else if (fragP->tc_frag_data.is_insn)
10610 {
10611 prop_flags->is_insn = TRUE;
10612 if (fragP->tc_frag_data.is_loop_target)
10613 prop_flags->insn.is_loop_target = TRUE;
10614 if (fragP->tc_frag_data.is_branch_target)
10615 prop_flags->insn.is_branch_target = TRUE;
10616 if (fragP->tc_frag_data.is_specific_opcode
10617 || fragP->tc_frag_data.is_no_transform)
10618 prop_flags->insn.is_no_transform = TRUE;
10619 if (fragP->tc_frag_data.is_no_density)
10620 prop_flags->insn.is_no_density = TRUE;
10621 if (fragP->tc_frag_data.use_absolute_literals)
10622 prop_flags->insn.is_abslit = TRUE;
10623 }
10624 if (fragP->tc_frag_data.is_align)
10625 {
10626 prop_flags->is_align = TRUE;
10627 prop_flags->alignment = fragP->tc_frag_data.alignment;
10628 if (xtensa_frag_flags_is_empty (prop_flags))
10629 prop_flags->is_data = TRUE;
10630 }
10631}
10632
10633
7fa3d080
BW
10634static bfd_vma
10635frag_flags_to_number (const frag_flags *prop_flags)
43cd72b9
BW
10636{
10637 bfd_vma num = 0;
10638 if (prop_flags->is_literal)
10639 num |= XTENSA_PROP_LITERAL;
10640 if (prop_flags->is_insn)
10641 num |= XTENSA_PROP_INSN;
10642 if (prop_flags->is_data)
10643 num |= XTENSA_PROP_DATA;
10644 if (prop_flags->is_unreachable)
10645 num |= XTENSA_PROP_UNREACHABLE;
10646 if (prop_flags->insn.is_loop_target)
10647 num |= XTENSA_PROP_INSN_LOOP_TARGET;
10648 if (prop_flags->insn.is_branch_target)
10649 {
10650 num |= XTENSA_PROP_INSN_BRANCH_TARGET;
10651 num = SET_XTENSA_PROP_BT_ALIGN (num, prop_flags->insn.bt_align_priority);
10652 }
10653
10654 if (prop_flags->insn.is_no_density)
10655 num |= XTENSA_PROP_INSN_NO_DENSITY;
10656 if (prop_flags->insn.is_no_transform)
10657 num |= XTENSA_PROP_INSN_NO_TRANSFORM;
10658 if (prop_flags->insn.is_no_reorder)
10659 num |= XTENSA_PROP_INSN_NO_REORDER;
10660 if (prop_flags->insn.is_abslit)
10661 num |= XTENSA_PROP_INSN_ABSLIT;
10662
10663 if (prop_flags->is_align)
10664 {
10665 num |= XTENSA_PROP_ALIGN;
10666 num = SET_XTENSA_PROP_ALIGNMENT (num, prop_flags->alignment);
10667 }
10668
10669 return num;
10670}
10671
10672
10673static bfd_boolean
7fa3d080
BW
10674xtensa_frag_flags_combinable (const frag_flags *prop_flags_1,
10675 const frag_flags *prop_flags_2)
43cd72b9
BW
10676{
10677 /* Cannot combine with an end marker. */
10678
10679 if (prop_flags_1->is_literal != prop_flags_2->is_literal)
10680 return FALSE;
10681 if (prop_flags_1->is_insn != prop_flags_2->is_insn)
10682 return FALSE;
10683 if (prop_flags_1->is_data != prop_flags_2->is_data)
10684 return FALSE;
10685
10686 if (prop_flags_1->is_insn)
10687 {
10688 /* Properties of the beginning of the frag. */
10689 if (prop_flags_2->insn.is_loop_target)
10690 return FALSE;
10691 if (prop_flags_2->insn.is_branch_target)
10692 return FALSE;
10693 if (prop_flags_1->insn.is_no_density !=
10694 prop_flags_2->insn.is_no_density)
10695 return FALSE;
10696 if (prop_flags_1->insn.is_no_transform !=
10697 prop_flags_2->insn.is_no_transform)
10698 return FALSE;
10699 if (prop_flags_1->insn.is_no_reorder !=
10700 prop_flags_2->insn.is_no_reorder)
10701 return FALSE;
10702 if (prop_flags_1->insn.is_abslit !=
10703 prop_flags_2->insn.is_abslit)
10704 return FALSE;
10705 }
10706
10707 if (prop_flags_1->is_align)
10708 return FALSE;
10709
10710 return TRUE;
10711}
10712
10713
7fa3d080
BW
10714static bfd_vma
10715xt_block_aligned_size (const xtensa_block_info *xt_block)
43cd72b9
BW
10716{
10717 bfd_vma end_addr;
d77b99c9 10718 unsigned align_bits;
43cd72b9
BW
10719
10720 if (!xt_block->flags.is_align)
10721 return xt_block->size;
10722
10723 end_addr = xt_block->offset + xt_block->size;
10724 align_bits = xt_block->flags.alignment;
10725 end_addr = ((end_addr + ((1 << align_bits) -1)) >> align_bits) << align_bits;
10726 return end_addr - xt_block->offset;
10727}
10728
10729
10730static bfd_boolean
7fa3d080
BW
10731xtensa_xt_block_combine (xtensa_block_info *xt_block,
10732 const xtensa_block_info *xt_block_2)
43cd72b9
BW
10733{
10734 if (xt_block->sec != xt_block_2->sec)
10735 return FALSE;
10736 if (xt_block->offset + xt_block_aligned_size (xt_block)
10737 != xt_block_2->offset)
10738 return FALSE;
10739
10740 if (xt_block_2->size == 0
10741 && (!xt_block_2->flags.is_unreachable
10742 || xt_block->flags.is_unreachable))
10743 {
10744 if (xt_block_2->flags.is_align
10745 && xt_block->flags.is_align)
10746 {
10747 /* Nothing needed. */
10748 if (xt_block->flags.alignment >= xt_block_2->flags.alignment)
10749 return TRUE;
10750 }
10751 else
10752 {
10753 if (xt_block_2->flags.is_align)
10754 {
10755 /* Push alignment to previous entry. */
10756 xt_block->flags.is_align = xt_block_2->flags.is_align;
10757 xt_block->flags.alignment = xt_block_2->flags.alignment;
10758 }
10759 return TRUE;
10760 }
10761 }
10762 if (!xtensa_frag_flags_combinable (&xt_block->flags,
10763 &xt_block_2->flags))
10764 return FALSE;
10765
10766 xt_block->size += xt_block_2->size;
10767
10768 if (xt_block_2->flags.is_align)
10769 {
10770 xt_block->flags.is_align = TRUE;
10771 xt_block->flags.alignment = xt_block_2->flags.alignment;
10772 }
10773
10774 return TRUE;
10775}
10776
10777
7fa3d080
BW
10778static void
10779add_xt_prop_frags (segT sec,
10780 segT xt_block_sec,
10781 xtensa_block_info **xt_block,
10782 frag_flags_fn property_function)
43cd72b9
BW
10783{
10784 segment_info_type *seg_info;
10785 segment_info_type *xt_seg_info;
10786 bfd_vma seg_offset;
10787 fragS *fragP;
10788
10789 xt_seg_info = retrieve_segment_info (xt_block_sec);
10790 seg_info = retrieve_segment_info (sec);
10791 /* Build it if needed. */
10792 while (*xt_block != NULL)
10793 {
10794 xt_block = &(*xt_block)->next;
10795 }
10796 /* We are either at NULL at the beginning or at the end. */
10797
10798 /* Walk through the frags. */
10799 seg_offset = 0;
10800
10801 if (seg_info->frchainP)
10802 {
10803 for (fragP = seg_info->frchainP->frch_root; fragP;
10804 fragP = fragP->fr_next)
10805 {
10806 xtensa_block_info tmp_block;
10807 tmp_block.sec = sec;
10808 tmp_block.offset = fragP->fr_address;
10809 tmp_block.size = fragP->fr_fix;
10810 tmp_block.next = NULL;
10811 property_function (fragP, &tmp_block.flags);
10812
10813 if (!xtensa_frag_flags_is_empty (&tmp_block.flags))
10814 /* && fragP->fr_fix != 0) */
10815 {
10816 if ((*xt_block) == NULL
10817 || !xtensa_xt_block_combine (*xt_block, &tmp_block))
10818 {
10819 xtensa_block_info *new_block;
10820 if ((*xt_block) != NULL)
10821 xt_block = &(*xt_block)->next;
10822 new_block = (xtensa_block_info *)
10823 xmalloc (sizeof (xtensa_block_info));
10824 *new_block = tmp_block;
10825 *xt_block = new_block;
10826 }
10827 }
10828 }
10829 }
10830}
10831
10832\f
10833/* op_placement_info_table */
10834
10835/* op_placement_info makes it easier to determine which
10836 ops can go in which slots. */
10837
10838static void
7fa3d080 10839init_op_placement_info_table (void)
43cd72b9
BW
10840{
10841 xtensa_isa isa = xtensa_default_isa;
10842 xtensa_insnbuf ibuf = xtensa_insnbuf_alloc (isa);
10843 xtensa_opcode opcode;
10844 xtensa_format fmt;
10845 int slot;
10846 int num_opcodes = xtensa_isa_num_opcodes (isa);
10847
10848 op_placement_table = (op_placement_info_table)
10849 xmalloc (sizeof (op_placement_info) * num_opcodes);
10850 assert (xtensa_isa_num_formats (isa) < MAX_FORMATS);
10851
10852 for (opcode = 0; opcode < num_opcodes; opcode++)
10853 {
10854 op_placement_info *opi = &op_placement_table[opcode];
10855 /* FIXME: Make tinsn allocation dynamic. */
10856 if (xtensa_opcode_num_operands (isa, opcode) >= MAX_INSN_ARGS)
10857 as_fatal (_("too many operands in instruction"));
43cd72b9
BW
10858 opi->narrowest = XTENSA_UNDEFINED;
10859 opi->narrowest_size = 0x7F;
b2d179be 10860 opi->narrowest_slot = 0;
43cd72b9
BW
10861 opi->formats = 0;
10862 opi->num_formats = 0;
10863 opi->issuef = 0;
10864 for (fmt = 0; fmt < xtensa_isa_num_formats (isa); fmt++)
10865 {
10866 opi->slots[fmt] = 0;
10867 for (slot = 0; slot < xtensa_format_num_slots (isa, fmt); slot++)
10868 {
10869 if (xtensa_opcode_encode (isa, fmt, slot, ibuf, opcode) == 0)
10870 {
10871 int fmt_length = xtensa_format_length (isa, fmt);
10872 opi->issuef++;
10873 set_bit (fmt, opi->formats);
10874 set_bit (slot, opi->slots[fmt]);
a02728c8
BW
10875 if (fmt_length < opi->narrowest_size
10876 || (fmt_length == opi->narrowest_size
10877 && (xtensa_format_num_slots (isa, fmt)
10878 < xtensa_format_num_slots (isa,
10879 opi->narrowest))))
43cd72b9
BW
10880 {
10881 opi->narrowest = fmt;
10882 opi->narrowest_size = fmt_length;
b2d179be 10883 opi->narrowest_slot = slot;
43cd72b9 10884 }
e0001a05
NC
10885 }
10886 }
43cd72b9
BW
10887 if (opi->formats)
10888 opi->num_formats++;
e0001a05
NC
10889 }
10890 }
43cd72b9
BW
10891 xtensa_insnbuf_free (isa, ibuf);
10892}
10893
10894
10895bfd_boolean
7fa3d080 10896opcode_fits_format_slot (xtensa_opcode opcode, xtensa_format fmt, int slot)
43cd72b9
BW
10897{
10898 return bit_is_set (slot, op_placement_table[opcode].slots[fmt]);
10899}
10900
10901
10902/* If the opcode is available in a single slot format, return its size. */
10903
7fa3d080
BW
10904static int
10905xg_get_single_size (xtensa_opcode opcode)
43cd72b9 10906{
b2d179be 10907 return op_placement_table[opcode].narrowest_size;
43cd72b9
BW
10908}
10909
10910
7fa3d080
BW
10911static xtensa_format
10912xg_get_single_format (xtensa_opcode opcode)
43cd72b9 10913{
b2d179be
BW
10914 return op_placement_table[opcode].narrowest;
10915}
10916
10917
10918static int
10919xg_get_single_slot (xtensa_opcode opcode)
10920{
10921 return op_placement_table[opcode].narrowest_slot;
e0001a05
NC
10922}
10923
10924\f
10925/* Instruction Stack Functions (from "xtensa-istack.h"). */
10926
10927void
7fa3d080 10928istack_init (IStack *stack)
e0001a05
NC
10929{
10930 memset (stack, 0, sizeof (IStack));
10931 stack->ninsn = 0;
10932}
10933
10934
10935bfd_boolean
7fa3d080 10936istack_empty (IStack *stack)
e0001a05
NC
10937{
10938 return (stack->ninsn == 0);
10939}
10940
10941
10942bfd_boolean
7fa3d080 10943istack_full (IStack *stack)
e0001a05
NC
10944{
10945 return (stack->ninsn == MAX_ISTACK);
10946}
10947
10948
10949/* Return a pointer to the top IStack entry.
43cd72b9 10950 It is an error to call this if istack_empty () is TRUE. */
e0001a05
NC
10951
10952TInsn *
7fa3d080 10953istack_top (IStack *stack)
e0001a05
NC
10954{
10955 int rec = stack->ninsn - 1;
10956 assert (!istack_empty (stack));
10957 return &stack->insn[rec];
10958}
10959
10960
10961/* Add a new TInsn to an IStack.
43cd72b9 10962 It is an error to call this if istack_full () is TRUE. */
e0001a05
NC
10963
10964void
7fa3d080 10965istack_push (IStack *stack, TInsn *insn)
e0001a05
NC
10966{
10967 int rec = stack->ninsn;
10968 assert (!istack_full (stack));
43cd72b9 10969 stack->insn[rec] = *insn;
e0001a05
NC
10970 stack->ninsn++;
10971}
10972
10973
10974/* Clear space for the next TInsn on the IStack and return a pointer
43cd72b9 10975 to it. It is an error to call this if istack_full () is TRUE. */
e0001a05
NC
10976
10977TInsn *
7fa3d080 10978istack_push_space (IStack *stack)
e0001a05
NC
10979{
10980 int rec = stack->ninsn;
10981 TInsn *insn;
10982 assert (!istack_full (stack));
10983 insn = &stack->insn[rec];
60242db2 10984 tinsn_init (insn);
e0001a05
NC
10985 stack->ninsn++;
10986 return insn;
10987}
10988
10989
10990/* Remove the last pushed instruction. It is an error to call this if
43cd72b9 10991 istack_empty () returns TRUE. */
e0001a05
NC
10992
10993void
7fa3d080 10994istack_pop (IStack *stack)
e0001a05
NC
10995{
10996 int rec = stack->ninsn - 1;
10997 assert (!istack_empty (stack));
10998 stack->ninsn--;
60242db2 10999 tinsn_init (&stack->insn[rec]);
e0001a05
NC
11000}
11001
11002\f
11003/* TInsn functions. */
11004
11005void
7fa3d080 11006tinsn_init (TInsn *dst)
e0001a05
NC
11007{
11008 memset (dst, 0, sizeof (TInsn));
11009}
11010
11011
43cd72b9 11012/* Return TRUE if ANY of the operands in the insn are symbolic. */
e0001a05
NC
11013
11014static bfd_boolean
7fa3d080 11015tinsn_has_symbolic_operands (const TInsn *insn)
e0001a05
NC
11016{
11017 int i;
11018 int n = insn->ntok;
11019
11020 assert (insn->insn_type == ITYPE_INSN);
11021
11022 for (i = 0; i < n; ++i)
11023 {
11024 switch (insn->tok[i].X_op)
11025 {
11026 case O_register:
11027 case O_constant:
11028 break;
11029 default:
11030 return TRUE;
11031 }
11032 }
11033 return FALSE;
11034}
11035
11036
11037bfd_boolean
7fa3d080 11038tinsn_has_invalid_symbolic_operands (const TInsn *insn)
e0001a05 11039{
43cd72b9 11040 xtensa_isa isa = xtensa_default_isa;
e0001a05
NC
11041 int i;
11042 int n = insn->ntok;
11043
11044 assert (insn->insn_type == ITYPE_INSN);
11045
11046 for (i = 0; i < n; ++i)
11047 {
11048 switch (insn->tok[i].X_op)
11049 {
11050 case O_register:
11051 case O_constant:
11052 break;
43cd72b9
BW
11053 case O_big:
11054 case O_illegal:
11055 case O_absent:
11056 /* Errors for these types are caught later. */
11057 break;
11058 case O_hi16:
11059 case O_lo16:
e0001a05 11060 default:
43cd72b9
BW
11061 /* Symbolic immediates are only allowed on the last immediate
11062 operand. At this time, CONST16 is the only opcode where we
e7da6241 11063 support non-PC-relative relocations. */
43cd72b9
BW
11064 if (i != get_relaxable_immed (insn->opcode)
11065 || (xtensa_operand_is_PCrelative (isa, insn->opcode, i) != 1
11066 && insn->opcode != xtensa_const16_opcode))
11067 {
431ad2d0 11068 as_bad (_("invalid symbolic operand"));
43cd72b9
BW
11069 return TRUE;
11070 }
e0001a05
NC
11071 }
11072 }
11073 return FALSE;
11074}
11075
11076
11077/* For assembly code with complex expressions (e.g. subtraction),
11078 we have to build them in the literal pool so that
11079 their results are calculated correctly after relaxation.
11080 The relaxation only handles expressions that
11081 boil down to SYMBOL + OFFSET. */
11082
11083static bfd_boolean
7fa3d080 11084tinsn_has_complex_operands (const TInsn *insn)
e0001a05
NC
11085{
11086 int i;
11087 int n = insn->ntok;
11088 assert (insn->insn_type == ITYPE_INSN);
11089 for (i = 0; i < n; ++i)
11090 {
11091 switch (insn->tok[i].X_op)
11092 {
11093 case O_register:
11094 case O_constant:
11095 case O_symbol:
43cd72b9
BW
11096 case O_lo16:
11097 case O_hi16:
e0001a05
NC
11098 break;
11099 default:
11100 return TRUE;
11101 }
11102 }
11103 return FALSE;
11104}
11105
11106
b2d179be
BW
11107/* Encode a TInsn opcode and its constant operands into slotbuf.
11108 Return TRUE if there is a symbol in the immediate field. This
11109 function assumes that:
11110 1) The number of operands are correct.
11111 2) The insn_type is ITYPE_INSN.
11112 3) The opcode can be encoded in the specified format and slot.
11113 4) Operands are either O_constant or O_symbol, and all constants fit. */
43cd72b9
BW
11114
11115static bfd_boolean
7fa3d080
BW
11116tinsn_to_slotbuf (xtensa_format fmt,
11117 int slot,
11118 TInsn *tinsn,
11119 xtensa_insnbuf slotbuf)
43cd72b9
BW
11120{
11121 xtensa_isa isa = xtensa_default_isa;
11122 xtensa_opcode opcode = tinsn->opcode;
11123 bfd_boolean has_fixup = FALSE;
11124 int noperands = xtensa_opcode_num_operands (isa, opcode);
11125 int i;
11126
43cd72b9
BW
11127 assert (tinsn->insn_type == ITYPE_INSN);
11128 if (noperands != tinsn->ntok)
11129 as_fatal (_("operand number mismatch"));
11130
11131 if (xtensa_opcode_encode (isa, fmt, slot, slotbuf, opcode))
11132 {
11133 as_bad (_("cannot encode opcode \"%s\" in the given format \"%s\""),
11134 xtensa_opcode_name (isa, opcode), xtensa_format_name (isa, fmt));
11135 return FALSE;
11136 }
11137
11138 for (i = 0; i < noperands; i++)
11139 {
11140 expressionS *expr = &tinsn->tok[i];
d77b99c9
BW
11141 int rc;
11142 unsigned line;
43cd72b9
BW
11143 char *file_name;
11144 uint32 opnd_value;
11145
11146 switch (expr->X_op)
11147 {
11148 case O_register:
11149 if (xtensa_operand_is_visible (isa, opcode, i) == 0)
11150 break;
11151 /* The register number has already been checked in
11152 expression_maybe_register, so we don't need to check here. */
11153 opnd_value = expr->X_add_number;
11154 (void) xtensa_operand_encode (isa, opcode, i, &opnd_value);
11155 rc = xtensa_operand_set_field (isa, opcode, i, fmt, slot, slotbuf,
11156 opnd_value);
11157 if (rc != 0)
11158 as_warn (_("xtensa-isa failure: %s"), xtensa_isa_error_msg (isa));
11159 break;
11160
11161 case O_constant:
11162 if (xtensa_operand_is_visible (isa, opcode, i) == 0)
11163 break;
11164 as_where (&file_name, &line);
11165 /* It is a constant and we called this function
11166 then we have to try to fit it. */
11167 xtensa_insnbuf_set_operand (slotbuf, fmt, slot, opcode, i,
e0001a05
NC
11168 expr->X_add_number, file_name, line);
11169 break;
11170
e0001a05
NC
11171 default:
11172 has_fixup = TRUE;
11173 break;
11174 }
11175 }
43cd72b9 11176
e0001a05
NC
11177 return has_fixup;
11178}
11179
11180
b2d179be
BW
11181/* Encode a single TInsn into an insnbuf. If the opcode can only be encoded
11182 into a multi-slot instruction, fill the other slots with NOPs.
11183 Return TRUE if there is a symbol in the immediate field. See also the
11184 assumptions listed for tinsn_to_slotbuf. */
11185
11186static bfd_boolean
11187tinsn_to_insnbuf (TInsn *tinsn, xtensa_insnbuf insnbuf)
11188{
11189 static xtensa_insnbuf slotbuf = 0;
11190 static vliw_insn vinsn;
11191 xtensa_isa isa = xtensa_default_isa;
11192 bfd_boolean has_fixup = FALSE;
11193 int i;
11194
11195 if (!slotbuf)
11196 {
11197 slotbuf = xtensa_insnbuf_alloc (isa);
11198 xg_init_vinsn (&vinsn);
11199 }
11200
11201 xg_clear_vinsn (&vinsn);
11202
11203 bundle_tinsn (tinsn, &vinsn);
11204
11205 xtensa_format_encode (isa, vinsn.format, insnbuf);
11206
11207 for (i = 0; i < vinsn.num_slots; i++)
11208 {
11209 /* Only one slot may have a fix-up because the rest contains NOPs. */
11210 has_fixup |=
11211 tinsn_to_slotbuf (vinsn.format, i, &vinsn.slots[i], vinsn.slotbuf[i]);
11212 xtensa_format_set_slot (isa, vinsn.format, i, insnbuf, vinsn.slotbuf[i]);
11213 }
11214
11215 return has_fixup;
11216}
11217
11218
43cd72b9 11219/* Check the instruction arguments. Return TRUE on failure. */
e0001a05 11220
7fa3d080
BW
11221static bfd_boolean
11222tinsn_check_arguments (const TInsn *insn)
e0001a05
NC
11223{
11224 xtensa_isa isa = xtensa_default_isa;
11225 xtensa_opcode opcode = insn->opcode;
11226
11227 if (opcode == XTENSA_UNDEFINED)
11228 {
11229 as_bad (_("invalid opcode"));
11230 return TRUE;
11231 }
11232
43cd72b9 11233 if (xtensa_opcode_num_operands (isa, opcode) > insn->ntok)
e0001a05
NC
11234 {
11235 as_bad (_("too few operands"));
11236 return TRUE;
11237 }
11238
43cd72b9 11239 if (xtensa_opcode_num_operands (isa, opcode) < insn->ntok)
e0001a05
NC
11240 {
11241 as_bad (_("too many operands"));
11242 return TRUE;
11243 }
11244 return FALSE;
11245}
11246
11247
11248/* Load an instruction from its encoded form. */
11249
11250static void
7fa3d080 11251tinsn_from_chars (TInsn *tinsn, char *f, int slot)
e0001a05 11252{
43cd72b9 11253 vliw_insn vinsn;
e0001a05 11254
43cd72b9
BW
11255 xg_init_vinsn (&vinsn);
11256 vinsn_from_chars (&vinsn, f);
11257
11258 *tinsn = vinsn.slots[slot];
11259 xg_free_vinsn (&vinsn);
11260}
e0001a05 11261
43cd72b9
BW
11262
11263static void
7fa3d080
BW
11264tinsn_from_insnbuf (TInsn *tinsn,
11265 xtensa_insnbuf slotbuf,
11266 xtensa_format fmt,
11267 int slot)
43cd72b9
BW
11268{
11269 int i;
11270 xtensa_isa isa = xtensa_default_isa;
e0001a05
NC
11271
11272 /* Find the immed. */
43cd72b9
BW
11273 tinsn_init (tinsn);
11274 tinsn->insn_type = ITYPE_INSN;
11275 tinsn->is_specific_opcode = FALSE; /* must not be specific */
11276 tinsn->opcode = xtensa_opcode_decode (isa, fmt, slot, slotbuf);
11277 tinsn->ntok = xtensa_opcode_num_operands (isa, tinsn->opcode);
11278 for (i = 0; i < tinsn->ntok; i++)
e0001a05 11279 {
43cd72b9
BW
11280 set_expr_const (&tinsn->tok[i],
11281 xtensa_insnbuf_get_operand (slotbuf, fmt, slot,
11282 tinsn->opcode, i));
e0001a05
NC
11283 }
11284}
11285
11286
11287/* Read the value of the relaxable immed from the fr_symbol and fr_offset. */
11288
11289static void
7fa3d080 11290tinsn_immed_from_frag (TInsn *tinsn, fragS *fragP, int slot)
e0001a05 11291{
43cd72b9 11292 xtensa_opcode opcode = tinsn->opcode;
e0001a05
NC
11293 int opnum;
11294
43cd72b9 11295 if (fragP->tc_frag_data.slot_symbols[slot])
e0001a05
NC
11296 {
11297 opnum = get_relaxable_immed (opcode);
43cd72b9 11298 assert (opnum >= 0);
e7da6241
BW
11299 set_expr_symbol_offset (&tinsn->tok[opnum],
11300 fragP->tc_frag_data.slot_symbols[slot],
11301 fragP->tc_frag_data.slot_offsets[slot]);
e0001a05
NC
11302 }
11303}
11304
11305
11306static int
7fa3d080 11307get_num_stack_text_bytes (IStack *istack)
e0001a05
NC
11308{
11309 int i;
11310 int text_bytes = 0;
11311
11312 for (i = 0; i < istack->ninsn; i++)
11313 {
43cd72b9
BW
11314 TInsn *tinsn = &istack->insn[i];
11315 if (tinsn->insn_type == ITYPE_INSN)
11316 text_bytes += xg_get_single_size (tinsn->opcode);
e0001a05
NC
11317 }
11318 return text_bytes;
11319}
11320
11321
11322static int
7fa3d080 11323get_num_stack_literal_bytes (IStack *istack)
e0001a05
NC
11324{
11325 int i;
11326 int lit_bytes = 0;
11327
11328 for (i = 0; i < istack->ninsn; i++)
11329 {
43cd72b9
BW
11330 TInsn *tinsn = &istack->insn[i];
11331 if (tinsn->insn_type == ITYPE_LITERAL && tinsn->ntok == 1)
e0001a05
NC
11332 lit_bytes += 4;
11333 }
11334 return lit_bytes;
11335}
11336
43cd72b9
BW
11337\f
11338/* vliw_insn functions. */
11339
7fa3d080
BW
11340static void
11341xg_init_vinsn (vliw_insn *v)
43cd72b9
BW
11342{
11343 int i;
11344 xtensa_isa isa = xtensa_default_isa;
11345
11346 xg_clear_vinsn (v);
11347
11348 v->insnbuf = xtensa_insnbuf_alloc (isa);
11349 if (v->insnbuf == NULL)
11350 as_fatal (_("out of memory"));
11351
11352 for (i = 0; i < MAX_SLOTS; i++)
11353 {
43cd72b9
BW
11354 v->slotbuf[i] = xtensa_insnbuf_alloc (isa);
11355 if (v->slotbuf[i] == NULL)
11356 as_fatal (_("out of memory"));
11357 }
11358}
11359
11360
7fa3d080
BW
11361static void
11362xg_clear_vinsn (vliw_insn *v)
43cd72b9
BW
11363{
11364 int i;
65738a7d
BW
11365
11366 memset (v, 0, offsetof (vliw_insn, insnbuf));
11367
43cd72b9
BW
11368 v->format = XTENSA_UNDEFINED;
11369 v->num_slots = 0;
11370 v->inside_bundle = FALSE;
11371
11372 if (xt_saved_debug_type != DEBUG_NONE)
11373 debug_type = xt_saved_debug_type;
11374
11375 for (i = 0; i < MAX_SLOTS; i++)
65738a7d 11376 v->slots[i].opcode = XTENSA_UNDEFINED;
43cd72b9
BW
11377}
11378
11379
7fa3d080
BW
11380static bfd_boolean
11381vinsn_has_specific_opcodes (vliw_insn *v)
43cd72b9
BW
11382{
11383 int i;
c138bc38 11384
43cd72b9
BW
11385 for (i = 0; i < v->num_slots; i++)
11386 {
11387 if (v->slots[i].is_specific_opcode)
11388 return TRUE;
11389 }
11390 return FALSE;
11391}
11392
11393
7fa3d080
BW
11394static void
11395xg_free_vinsn (vliw_insn *v)
43cd72b9
BW
11396{
11397 int i;
11398 xtensa_insnbuf_free (xtensa_default_isa, v->insnbuf);
11399 for (i = 0; i < MAX_SLOTS; i++)
11400 xtensa_insnbuf_free (xtensa_default_isa, v->slotbuf[i]);
11401}
11402
11403
e7da6241
BW
11404/* Encode a vliw_insn into an insnbuf. Return TRUE if there are any symbolic
11405 operands. See also the assumptions listed for tinsn_to_slotbuf. */
43cd72b9
BW
11406
11407static bfd_boolean
7fa3d080
BW
11408vinsn_to_insnbuf (vliw_insn *vinsn,
11409 char *frag_offset,
11410 fragS *fragP,
11411 bfd_boolean record_fixup)
43cd72b9
BW
11412{
11413 xtensa_isa isa = xtensa_default_isa;
11414 xtensa_format fmt = vinsn->format;
11415 xtensa_insnbuf insnbuf = vinsn->insnbuf;
11416 int slot;
11417 bfd_boolean has_fixup = FALSE;
11418
11419 xtensa_format_encode (isa, fmt, insnbuf);
11420
11421 for (slot = 0; slot < vinsn->num_slots; slot++)
11422 {
11423 TInsn *tinsn = &vinsn->slots[slot];
11424 bfd_boolean tinsn_has_fixup =
11425 tinsn_to_slotbuf (vinsn->format, slot, tinsn,
11426 vinsn->slotbuf[slot]);
11427
11428 xtensa_format_set_slot (isa, fmt, slot,
11429 insnbuf, vinsn->slotbuf[slot]);
e7da6241 11430 if (tinsn_has_fixup)
43cd72b9
BW
11431 {
11432 int i;
11433 xtensa_opcode opcode = tinsn->opcode;
11434 int noperands = xtensa_opcode_num_operands (isa, opcode);
11435 has_fixup = TRUE;
11436
11437 for (i = 0; i < noperands; i++)
11438 {
11439 expressionS* expr = &tinsn->tok[i];
11440 switch (expr->X_op)
11441 {
11442 case O_symbol:
11443 case O_lo16:
11444 case O_hi16:
11445 if (get_relaxable_immed (opcode) == i)
11446 {
e7da6241
BW
11447 /* Add a fix record for the instruction, except if this
11448 function is being called prior to relaxation, i.e.,
11449 if record_fixup is false, and the instruction might
11450 be relaxed later. */
11451 if (record_fixup
11452 || tinsn->is_specific_opcode
11453 || !xg_is_relaxable_insn (tinsn, 0))
43cd72b9 11454 {
e7da6241
BW
11455 xg_add_opcode_fix (tinsn, i, fmt, slot, expr, fragP,
11456 frag_offset - fragP->fr_literal);
43cd72b9
BW
11457 }
11458 else
11459 {
e7da6241
BW
11460 if (expr->X_op != O_symbol)
11461 as_bad (_("invalid operand"));
43cd72b9
BW
11462 tinsn->symbol = expr->X_add_symbol;
11463 tinsn->offset = expr->X_add_number;
11464 }
11465 }
11466 else
e7da6241 11467 as_bad (_("symbolic operand not allowed"));
43cd72b9
BW
11468 break;
11469
11470 case O_constant:
11471 case O_register:
11472 break;
11473
43cd72b9 11474 default:
e7da6241 11475 as_bad (_("expression too complex"));
43cd72b9
BW
11476 break;
11477 }
11478 }
11479 }
11480 }
11481
11482 return has_fixup;
11483}
11484
11485
11486static void
7fa3d080 11487vinsn_from_chars (vliw_insn *vinsn, char *f)
43cd72b9
BW
11488{
11489 static xtensa_insnbuf insnbuf = NULL;
11490 static xtensa_insnbuf slotbuf = NULL;
11491 int i;
11492 xtensa_format fmt;
11493 xtensa_isa isa = xtensa_default_isa;
11494
11495 if (!insnbuf)
11496 {
11497 insnbuf = xtensa_insnbuf_alloc (isa);
11498 slotbuf = xtensa_insnbuf_alloc (isa);
11499 }
11500
d77b99c9 11501 xtensa_insnbuf_from_chars (isa, insnbuf, (unsigned char *) f, 0);
43cd72b9
BW
11502 fmt = xtensa_format_decode (isa, insnbuf);
11503 if (fmt == XTENSA_UNDEFINED)
11504 as_fatal (_("cannot decode instruction format"));
11505 vinsn->format = fmt;
11506 vinsn->num_slots = xtensa_format_num_slots (isa, fmt);
11507
11508 for (i = 0; i < vinsn->num_slots; i++)
11509 {
11510 TInsn *tinsn = &vinsn->slots[i];
11511 xtensa_format_get_slot (isa, fmt, i, insnbuf, slotbuf);
11512 tinsn_from_insnbuf (tinsn, slotbuf, fmt, i);
11513 }
11514}
11515
e0001a05
NC
11516\f
11517/* Expression utilities. */
11518
43cd72b9 11519/* Return TRUE if the expression is an integer constant. */
e0001a05
NC
11520
11521bfd_boolean
7fa3d080 11522expr_is_const (const expressionS *s)
e0001a05
NC
11523{
11524 return (s->X_op == O_constant);
11525}
11526
11527
11528/* Get the expression constant.
43cd72b9 11529 Calling this is illegal if expr_is_const () returns TRUE. */
e0001a05
NC
11530
11531offsetT
7fa3d080 11532get_expr_const (const expressionS *s)
e0001a05
NC
11533{
11534 assert (expr_is_const (s));
11535 return s->X_add_number;
11536}
11537
11538
11539/* Set the expression to a constant value. */
11540
11541void
7fa3d080 11542set_expr_const (expressionS *s, offsetT val)
e0001a05
NC
11543{
11544 s->X_op = O_constant;
11545 s->X_add_number = val;
11546 s->X_add_symbol = NULL;
11547 s->X_op_symbol = NULL;
11548}
11549
11550
43cd72b9 11551bfd_boolean
7fa3d080 11552expr_is_register (const expressionS *s)
43cd72b9
BW
11553{
11554 return (s->X_op == O_register);
11555}
11556
11557
11558/* Get the expression constant.
11559 Calling this is illegal if expr_is_const () returns TRUE. */
11560
11561offsetT
7fa3d080 11562get_expr_register (const expressionS *s)
43cd72b9
BW
11563{
11564 assert (expr_is_register (s));
11565 return s->X_add_number;
11566}
11567
11568
e0001a05
NC
11569/* Set the expression to a symbol + constant offset. */
11570
11571void
7fa3d080 11572set_expr_symbol_offset (expressionS *s, symbolS *sym, offsetT offset)
e0001a05
NC
11573{
11574 s->X_op = O_symbol;
11575 s->X_add_symbol = sym;
11576 s->X_op_symbol = NULL; /* unused */
11577 s->X_add_number = offset;
11578}
11579
11580
43cd72b9
BW
11581/* Return TRUE if the two expressions are equal. */
11582
e0001a05 11583bfd_boolean
7fa3d080 11584expr_is_equal (expressionS *s1, expressionS *s2)
e0001a05
NC
11585{
11586 if (s1->X_op != s2->X_op)
11587 return FALSE;
11588 if (s1->X_add_symbol != s2->X_add_symbol)
11589 return FALSE;
11590 if (s1->X_op_symbol != s2->X_op_symbol)
11591 return FALSE;
11592 if (s1->X_add_number != s2->X_add_number)
11593 return FALSE;
11594 return TRUE;
11595}
11596
11597
11598static void
7fa3d080 11599copy_expr (expressionS *dst, const expressionS *src)
e0001a05
NC
11600{
11601 memcpy (dst, src, sizeof (expressionS));
11602}
11603
11604\f
9456465c 11605/* Support for the "--rename-section" option. */
e0001a05
NC
11606
11607struct rename_section_struct
11608{
11609 char *old_name;
11610 char *new_name;
11611 struct rename_section_struct *next;
11612};
11613
11614static struct rename_section_struct *section_rename;
11615
11616
9456465c
BW
11617/* Parse the string "oldname=new_name(:oldname2=new_name2)*" and add
11618 entries to the section_rename list. Note: Specifying multiple
11619 renamings separated by colons is not documented and is retained only
11620 for backward compatibility. */
e0001a05 11621
7fa3d080
BW
11622static void
11623build_section_rename (const char *arg)
e0001a05 11624{
9456465c 11625 struct rename_section_struct *r;
e0001a05
NC
11626 char *this_arg = NULL;
11627 char *next_arg = NULL;
11628
9456465c 11629 for (this_arg = xstrdup (arg); this_arg != NULL; this_arg = next_arg)
e0001a05 11630 {
9456465c
BW
11631 char *old_name, *new_name;
11632
e0001a05
NC
11633 if (this_arg)
11634 {
11635 next_arg = strchr (this_arg, ':');
11636 if (next_arg)
11637 {
11638 *next_arg = '\0';
11639 next_arg++;
11640 }
11641 }
e0001a05 11642
9456465c
BW
11643 old_name = this_arg;
11644 new_name = strchr (this_arg, '=');
e0001a05 11645
9456465c
BW
11646 if (*old_name == '\0')
11647 {
11648 as_warn (_("ignoring extra '-rename-section' delimiter ':'"));
11649 continue;
11650 }
11651 if (!new_name || new_name[1] == '\0')
11652 {
11653 as_warn (_("ignoring invalid '-rename-section' specification: '%s'"),
11654 old_name);
11655 continue;
11656 }
11657 *new_name = '\0';
11658 new_name++;
e0001a05 11659
9456465c
BW
11660 /* Check for invalid section renaming. */
11661 for (r = section_rename; r != NULL; r = r->next)
11662 {
11663 if (strcmp (r->old_name, old_name) == 0)
11664 as_bad (_("section %s renamed multiple times"), old_name);
11665 if (strcmp (r->new_name, new_name) == 0)
11666 as_bad (_("multiple sections remapped to output section %s"),
11667 new_name);
11668 }
e0001a05 11669
9456465c
BW
11670 /* Now add it. */
11671 r = (struct rename_section_struct *)
11672 xmalloc (sizeof (struct rename_section_struct));
11673 r->old_name = xstrdup (old_name);
11674 r->new_name = xstrdup (new_name);
11675 r->next = section_rename;
11676 section_rename = r;
e0001a05 11677 }
e0001a05
NC
11678}
11679
11680
9456465c
BW
11681char *
11682xtensa_section_rename (char *name)
e0001a05
NC
11683{
11684 struct rename_section_struct *r = section_rename;
11685
11686 for (r = section_rename; r != NULL; r = r->next)
43cd72b9
BW
11687 {
11688 if (strcmp (r->old_name, name) == 0)
11689 return r->new_name;
11690 }
e0001a05
NC
11691
11692 return name;
11693}
This page took 0.821058 seconds and 4 git commands to generate.