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