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