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