]>
Commit | Line | Data |
---|---|---|
e0001a05 | 1 | /* tc-xtensa.c -- Assemble Xtensa instructions. |
aa820537 AM |
2 | Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 |
3 | Free Software Foundation, Inc. | |
e0001a05 NC |
4 | |
5 | This file is part of GAS, the GNU Assembler. | |
6 | ||
7 | GAS is free software; you can redistribute it and/or modify | |
8 | it under the terms of the GNU General Public License as published by | |
ec2655a6 | 9 | the Free Software Foundation; either version 3, or (at your option) |
e0001a05 NC |
10 | any later version. |
11 | ||
12 | GAS is distributed in the hope that it will be useful, | |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
18 | along with GAS; see the file COPYING. If not, write to | |
4b4da160 NC |
19 | the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, |
20 | MA 02110-1301, USA. */ | |
e0001a05 | 21 | |
43cd72b9 | 22 | #include <limits.h> |
e0001a05 NC |
23 | #include "as.h" |
24 | #include "sb.h" | |
25 | #include "safe-ctype.h" | |
26 | #include "tc-xtensa.h" | |
e0001a05 NC |
27 | #include "subsegs.h" |
28 | #include "xtensa-relax.h" | |
cda2eb9e | 29 | #include "dwarf2dbg.h" |
b224e962 | 30 | #include "xtensa-istack.h" |
e0001a05 NC |
31 | #include "struc-symbol.h" |
32 | #include "xtensa-config.h" | |
33 | ||
2caa7ca0 BW |
34 | /* Provide default values for new configuration settings. */ |
35 | #ifndef XSHAL_ABI | |
36 | #define XSHAL_ABI 0 | |
37 | #endif | |
38 | ||
e0001a05 NC |
39 | #ifndef uint32 |
40 | #define uint32 unsigned int | |
41 | #endif | |
42 | #ifndef int32 | |
43 | #define int32 signed int | |
44 | #endif | |
45 | ||
46 | /* Notes: | |
47 | ||
e0001a05 NC |
48 | Naming conventions (used somewhat inconsistently): |
49 | The xtensa_ functions are exported | |
50 | The xg_ functions are internal | |
51 | ||
52 | We also have a couple of different extensibility mechanisms. | |
53 | 1) The idiom replacement: | |
54 | This is used when a line is first parsed to | |
55 | replace an instruction pattern with another instruction | |
56 | It is currently limited to replacements of instructions | |
57 | with constant operands. | |
58 | 2) The xtensa-relax.c mechanism that has stronger instruction | |
59 | replacement patterns. When an instruction's immediate field | |
60 | does not fit the next instruction sequence is attempted. | |
61 | In addition, "narrow" opcodes are supported this way. */ | |
62 | ||
63 | ||
64 | /* Define characters with special meanings to GAS. */ | |
65 | const char comment_chars[] = "#"; | |
66 | const char line_comment_chars[] = "#"; | |
67 | const char line_separator_chars[] = ";"; | |
68 | const char EXP_CHARS[] = "eE"; | |
69 | const char FLT_CHARS[] = "rRsSfFdDxXpP"; | |
70 | ||
71 | ||
43cd72b9 BW |
72 | /* Flags to indicate whether the hardware supports the density and |
73 | absolute literals options. */ | |
e0001a05 | 74 | |
e0001a05 | 75 | bfd_boolean density_supported = XCHAL_HAVE_DENSITY; |
43cd72b9 BW |
76 | bfd_boolean absolute_literals_supported = XSHAL_USE_ABSOLUTE_LITERALS; |
77 | ||
43cd72b9 BW |
78 | static vliw_insn cur_vinsn; |
79 | ||
77cba8a3 | 80 | unsigned xtensa_num_pipe_stages; |
d77b99c9 | 81 | unsigned xtensa_fetch_width = XCHAL_INST_FETCH_WIDTH; |
43cd72b9 BW |
82 | |
83 | static enum debug_info_type xt_saved_debug_type = DEBUG_NONE; | |
84 | ||
85 | /* Some functions are only valid in the front end. This variable | |
c138bc38 | 86 | allows us to assert that we haven't crossed over into the |
43cd72b9 BW |
87 | back end. */ |
88 | static bfd_boolean past_xtensa_end = FALSE; | |
e0001a05 NC |
89 | |
90 | /* Flags for properties of the last instruction in a segment. */ | |
91 | #define FLAG_IS_A0_WRITER 0x1 | |
92 | #define FLAG_IS_BAD_LOOPEND 0x2 | |
93 | ||
94 | ||
95 | /* We define a special segment names ".literal" to place literals | |
96 | into. The .fini and .init sections are special because they | |
97 | contain code that is moved together by the linker. We give them | |
98 | their own special .fini.literal and .init.literal sections. */ | |
99 | ||
100 | #define LITERAL_SECTION_NAME xtensa_section_rename (".literal") | |
43cd72b9 | 101 | #define LIT4_SECTION_NAME xtensa_section_rename (".lit4") |
e0001a05 | 102 | #define INIT_SECTION_NAME xtensa_section_rename (".init") |
74869ac7 | 103 | #define FINI_SECTION_NAME xtensa_section_rename (".fini") |
e0001a05 NC |
104 | |
105 | ||
43cd72b9 | 106 | /* This type is used for the directive_stack to keep track of the |
74869ac7 BW |
107 | state of the literal collection pools. If lit_prefix is set, it is |
108 | used to determine the literal section names; otherwise, the literal | |
109 | sections are determined based on the current text section. The | |
110 | lit_seg and lit4_seg fields cache these literal sections, with the | |
111 | current_text_seg field used a tag to indicate whether the cached | |
112 | values are valid. */ | |
e0001a05 NC |
113 | |
114 | typedef struct lit_state_struct | |
115 | { | |
74869ac7 BW |
116 | char *lit_prefix; |
117 | segT current_text_seg; | |
e0001a05 | 118 | segT lit_seg; |
43cd72b9 | 119 | segT lit4_seg; |
e0001a05 NC |
120 | } lit_state; |
121 | ||
122 | static lit_state default_lit_sections; | |
123 | ||
124 | ||
74869ac7 BW |
125 | /* We keep a list of literal segments. The seg_list type is the node |
126 | for this list. The literal_head pointer is the head of the list, | |
127 | with the literal_head_h dummy node at the start. */ | |
e0001a05 NC |
128 | |
129 | typedef struct seg_list_struct | |
130 | { | |
131 | struct seg_list_struct *next; | |
132 | segT seg; | |
133 | } seg_list; | |
134 | ||
135 | static seg_list literal_head_h; | |
136 | static seg_list *literal_head = &literal_head_h; | |
e0001a05 NC |
137 | |
138 | ||
82e7541d BW |
139 | /* Lists of symbols. We keep a list of symbols that label the current |
140 | instruction, so that we can adjust the symbols when inserting alignment | |
141 | for various instructions. We also keep a list of all the symbols on | |
142 | literals, so that we can fix up those symbols when the literals are | |
143 | later moved into the text sections. */ | |
144 | ||
145 | typedef struct sym_list_struct | |
146 | { | |
147 | struct sym_list_struct *next; | |
148 | symbolS *sym; | |
149 | } sym_list; | |
150 | ||
151 | static sym_list *insn_labels = NULL; | |
152 | static sym_list *free_insn_labels = NULL; | |
153 | static sym_list *saved_insn_labels = NULL; | |
154 | ||
155 | static sym_list *literal_syms; | |
156 | ||
157 | ||
43cd72b9 BW |
158 | /* Flags to determine whether to prefer const16 or l32r |
159 | if both options are available. */ | |
160 | int prefer_const16 = 0; | |
161 | int prefer_l32r = 0; | |
162 | ||
e0001a05 NC |
163 | /* Global flag to indicate when we are emitting literals. */ |
164 | int generating_literals = 0; | |
165 | ||
43cd72b9 BW |
166 | /* The following PROPERTY table definitions are copied from |
167 | <elf/xtensa.h> and must be kept in sync with the code there. */ | |
168 | ||
169 | /* Flags in the property tables to specify whether blocks of memory | |
170 | are literals, instructions, data, or unreachable. For | |
171 | instructions, blocks that begin loop targets and branch targets are | |
172 | designated. Blocks that do not allow density, instruction | |
173 | reordering or transformation are also specified. Finally, for | |
174 | branch targets, branch target alignment priority is included. | |
175 | Alignment of the next block is specified in the current block | |
176 | and the size of the current block does not include any fill required | |
177 | to align to the next block. */ | |
178 | ||
179 | #define XTENSA_PROP_LITERAL 0x00000001 | |
180 | #define XTENSA_PROP_INSN 0x00000002 | |
181 | #define XTENSA_PROP_DATA 0x00000004 | |
182 | #define XTENSA_PROP_UNREACHABLE 0x00000008 | |
183 | /* Instruction only properties at beginning of code. */ | |
184 | #define XTENSA_PROP_INSN_LOOP_TARGET 0x00000010 | |
185 | #define XTENSA_PROP_INSN_BRANCH_TARGET 0x00000020 | |
186 | /* Instruction only properties about code. */ | |
187 | #define XTENSA_PROP_INSN_NO_DENSITY 0x00000040 | |
188 | #define XTENSA_PROP_INSN_NO_REORDER 0x00000080 | |
99ded152 BW |
189 | /* Historically, NO_TRANSFORM was a property of instructions, |
190 | but it should apply to literals under certain circumstances. */ | |
191 | #define XTENSA_PROP_NO_TRANSFORM 0x00000100 | |
43cd72b9 BW |
192 | |
193 | /* Branch target alignment information. This transmits information | |
194 | to the linker optimization about the priority of aligning a | |
195 | particular block for branch target alignment: None, low priority, | |
196 | high priority, or required. These only need to be checked in | |
197 | instruction blocks marked as XTENSA_PROP_INSN_BRANCH_TARGET. | |
198 | Common usage is | |
199 | ||
200 | switch (GET_XTENSA_PROP_BT_ALIGN (flags)) | |
201 | case XTENSA_PROP_BT_ALIGN_NONE: | |
202 | case XTENSA_PROP_BT_ALIGN_LOW: | |
203 | case XTENSA_PROP_BT_ALIGN_HIGH: | |
204 | case XTENSA_PROP_BT_ALIGN_REQUIRE: | |
205 | */ | |
206 | #define XTENSA_PROP_BT_ALIGN_MASK 0x00000600 | |
207 | ||
208 | /* No branch target alignment. */ | |
209 | #define XTENSA_PROP_BT_ALIGN_NONE 0x0 | |
210 | /* Low priority branch target alignment. */ | |
211 | #define XTENSA_PROP_BT_ALIGN_LOW 0x1 | |
212 | /* High priority branch target alignment. */ | |
213 | #define XTENSA_PROP_BT_ALIGN_HIGH 0x2 | |
214 | /* Required branch target alignment. */ | |
215 | #define XTENSA_PROP_BT_ALIGN_REQUIRE 0x3 | |
216 | ||
217 | #define GET_XTENSA_PROP_BT_ALIGN(flag) \ | |
218 | (((unsigned) ((flag) & (XTENSA_PROP_BT_ALIGN_MASK))) >> 9) | |
219 | #define SET_XTENSA_PROP_BT_ALIGN(flag, align) \ | |
220 | (((flag) & (~XTENSA_PROP_BT_ALIGN_MASK)) | \ | |
221 | (((align) << 9) & XTENSA_PROP_BT_ALIGN_MASK)) | |
222 | ||
223 | ||
224 | /* Alignment is specified in the block BEFORE the one that needs | |
225 | alignment. Up to 5 bits. Use GET_XTENSA_PROP_ALIGNMENT(flags) to | |
226 | get the required alignment specified as a power of 2. Use | |
227 | SET_XTENSA_PROP_ALIGNMENT(flags, pow2) to set the required | |
228 | alignment. Be careful of side effects since the SET will evaluate | |
229 | flags twice. Also, note that the SIZE of a block in the property | |
230 | table does not include the alignment size, so the alignment fill | |
231 | must be calculated to determine if two blocks are contiguous. | |
232 | TEXT_ALIGN is not currently implemented but is a placeholder for a | |
233 | possible future implementation. */ | |
234 | ||
235 | #define XTENSA_PROP_ALIGN 0x00000800 | |
236 | ||
237 | #define XTENSA_PROP_ALIGNMENT_MASK 0x0001f000 | |
238 | ||
239 | #define GET_XTENSA_PROP_ALIGNMENT(flag) \ | |
240 | (((unsigned) ((flag) & (XTENSA_PROP_ALIGNMENT_MASK))) >> 12) | |
241 | #define SET_XTENSA_PROP_ALIGNMENT(flag, align) \ | |
242 | (((flag) & (~XTENSA_PROP_ALIGNMENT_MASK)) | \ | |
243 | (((align) << 12) & XTENSA_PROP_ALIGNMENT_MASK)) | |
244 | ||
245 | #define XTENSA_PROP_INSN_ABSLIT 0x00020000 | |
246 | ||
247 | ||
248 | /* Structure for saving instruction and alignment per-fragment data | |
249 | that will be written to the object file. This structure is | |
250 | equivalent to the actual data that will be written out to the file | |
251 | but is easier to use. We provide a conversion to file flags | |
252 | in frag_flags_to_number. */ | |
253 | ||
254 | typedef struct frag_flags_struct frag_flags; | |
255 | ||
256 | struct frag_flags_struct | |
257 | { | |
258 | /* is_literal should only be used after xtensa_move_literals. | |
259 | If you need to check if you are generating a literal fragment, | |
260 | then use the generating_literals global. */ | |
261 | ||
262 | unsigned is_literal : 1; | |
263 | unsigned is_insn : 1; | |
264 | unsigned is_data : 1; | |
265 | unsigned is_unreachable : 1; | |
266 | ||
99ded152 BW |
267 | /* is_specific_opcode implies no_transform. */ |
268 | unsigned is_no_transform : 1; | |
269 | ||
43cd72b9 BW |
270 | struct |
271 | { | |
272 | unsigned is_loop_target : 1; | |
273 | unsigned is_branch_target : 1; /* Branch targets have a priority. */ | |
274 | unsigned bt_align_priority : 2; | |
275 | ||
276 | unsigned is_no_density : 1; | |
277 | /* no_longcalls flag does not need to be placed in the object file. */ | |
43cd72b9 BW |
278 | |
279 | unsigned is_no_reorder : 1; | |
280 | ||
281 | /* Uses absolute literal addressing for l32r. */ | |
282 | unsigned is_abslit : 1; | |
283 | } insn; | |
284 | unsigned is_align : 1; | |
285 | unsigned alignment : 5; | |
286 | }; | |
287 | ||
288 | ||
289 | /* Structure for saving information about a block of property data | |
290 | for frags that have the same flags. */ | |
291 | struct xtensa_block_info_struct | |
292 | { | |
293 | segT sec; | |
294 | bfd_vma offset; | |
295 | size_t size; | |
296 | frag_flags flags; | |
297 | struct xtensa_block_info_struct *next; | |
298 | }; | |
299 | ||
e0001a05 NC |
300 | |
301 | /* Structure for saving the current state before emitting literals. */ | |
302 | typedef struct emit_state_struct | |
303 | { | |
304 | const char *name; | |
305 | segT now_seg; | |
306 | subsegT now_subseg; | |
307 | int generating_literals; | |
308 | } emit_state; | |
309 | ||
310 | ||
43cd72b9 BW |
311 | /* Opcode placement information */ |
312 | ||
313 | typedef unsigned long long bitfield; | |
314 | #define bit_is_set(bit, bf) ((bf) & (0x01ll << (bit))) | |
315 | #define set_bit(bit, bf) ((bf) |= (0x01ll << (bit))) | |
316 | #define clear_bit(bit, bf) ((bf) &= ~(0x01ll << (bit))) | |
317 | ||
318 | #define MAX_FORMATS 32 | |
319 | ||
320 | typedef struct op_placement_info_struct | |
321 | { | |
322 | int num_formats; | |
323 | /* A number describing how restrictive the issue is for this | |
324 | opcode. For example, an opcode that fits lots of different | |
c138bc38 | 325 | formats has a high freedom, as does an opcode that fits |
43cd72b9 | 326 | only one format but many slots in that format. The most |
c138bc38 | 327 | restrictive is the opcode that fits only one slot in one |
43cd72b9 BW |
328 | format. */ |
329 | int issuef; | |
43cd72b9 | 330 | xtensa_format narrowest; |
43cd72b9 | 331 | char narrowest_size; |
b2d179be | 332 | char narrowest_slot; |
43cd72b9 BW |
333 | |
334 | /* formats is a bitfield with the Nth bit set | |
335 | if the opcode fits in the Nth xtensa_format. */ | |
336 | bitfield formats; | |
337 | ||
338 | /* slots[N]'s Mth bit is set if the op fits in the | |
339 | Mth slot of the Nth xtensa_format. */ | |
340 | bitfield slots[MAX_FORMATS]; | |
341 | ||
342 | /* A count of the number of slots in a given format | |
343 | an op can fit (i.e., the bitcount of the slot field above). */ | |
344 | char slots_in_format[MAX_FORMATS]; | |
345 | ||
346 | } op_placement_info, *op_placement_info_table; | |
347 | ||
348 | op_placement_info_table op_placement_table; | |
349 | ||
350 | ||
351 | /* Extra expression types. */ | |
352 | ||
353 | #define O_pltrel O_md1 /* like O_symbol but use a PLT reloc */ | |
354 | #define O_hi16 O_md2 /* use high 16 bits of symbolic value */ | |
355 | #define O_lo16 O_md3 /* use low 16 bits of symbolic value */ | |
1bbb5f21 | 356 | #define O_pcrel O_md4 /* value is a PC-relative offset */ |
28dbbc02 BW |
357 | #define O_tlsfunc O_md5 /* TLS_FUNC/TLSDESC_FN relocation */ |
358 | #define O_tlsarg O_md6 /* TLS_ARG/TLSDESC_ARG relocation */ | |
359 | #define O_tlscall O_md7 /* TLS_CALL relocation */ | |
360 | #define O_tpoff O_md8 /* TPOFF relocation */ | |
361 | #define O_dtpoff O_md9 /* DTPOFF relocation */ | |
43cd72b9 | 362 | |
bbdd25a8 BW |
363 | struct suffix_reloc_map |
364 | { | |
365 | char *suffix; | |
366 | int length; | |
367 | bfd_reloc_code_real_type reloc; | |
368 | unsigned char operator; | |
369 | }; | |
370 | ||
371 | #define SUFFIX_MAP(str, reloc, op) { str, sizeof (str) - 1, reloc, op } | |
372 | ||
373 | static struct suffix_reloc_map suffix_relocs[] = | |
374 | { | |
375 | SUFFIX_MAP ("l", BFD_RELOC_LO16, O_lo16), | |
376 | SUFFIX_MAP ("h", BFD_RELOC_HI16, O_hi16), | |
377 | SUFFIX_MAP ("plt", BFD_RELOC_XTENSA_PLT, O_pltrel), | |
1bbb5f21 | 378 | SUFFIX_MAP ("pcrel", BFD_RELOC_32_PCREL, O_pcrel), |
28dbbc02 BW |
379 | SUFFIX_MAP ("tlsfunc", BFD_RELOC_XTENSA_TLS_FUNC, O_tlsfunc), |
380 | SUFFIX_MAP ("tlsarg", BFD_RELOC_XTENSA_TLS_ARG, O_tlsarg), | |
381 | SUFFIX_MAP ("tlscall", BFD_RELOC_XTENSA_TLS_CALL, O_tlscall), | |
382 | SUFFIX_MAP ("tpoff", BFD_RELOC_XTENSA_TLS_TPOFF, O_tpoff), | |
383 | SUFFIX_MAP ("dtpoff", BFD_RELOC_XTENSA_TLS_DTPOFF, O_dtpoff), | |
bbdd25a8 BW |
384 | { (char *) 0, 0, BFD_RELOC_UNUSED, 0 } |
385 | }; | |
386 | ||
43cd72b9 | 387 | |
e0001a05 NC |
388 | /* Directives. */ |
389 | ||
390 | typedef enum | |
391 | { | |
392 | directive_none = 0, | |
393 | directive_literal, | |
394 | directive_density, | |
43cd72b9 | 395 | directive_transform, |
e0001a05 NC |
396 | directive_freeregs, |
397 | directive_longcalls, | |
43cd72b9 BW |
398 | directive_literal_prefix, |
399 | directive_schedule, | |
400 | directive_absolute_literals, | |
401 | directive_last_directive | |
e0001a05 NC |
402 | } directiveE; |
403 | ||
404 | typedef struct | |
405 | { | |
406 | const char *name; | |
407 | bfd_boolean can_be_negated; | |
408 | } directive_infoS; | |
409 | ||
410 | const directive_infoS directive_info[] = | |
411 | { | |
43cd72b9 BW |
412 | { "none", FALSE }, |
413 | { "literal", FALSE }, | |
414 | { "density", TRUE }, | |
415 | { "transform", TRUE }, | |
416 | { "freeregs", FALSE }, | |
417 | { "longcalls", TRUE }, | |
418 | { "literal_prefix", FALSE }, | |
419 | { "schedule", TRUE }, | |
420 | { "absolute-literals", TRUE } | |
e0001a05 NC |
421 | }; |
422 | ||
423 | bfd_boolean directive_state[] = | |
424 | { | |
425 | FALSE, /* none */ | |
426 | FALSE, /* literal */ | |
43cd72b9 | 427 | #if !XCHAL_HAVE_DENSITY |
e0001a05 NC |
428 | FALSE, /* density */ |
429 | #else | |
430 | TRUE, /* density */ | |
431 | #endif | |
43cd72b9 | 432 | TRUE, /* transform */ |
e0001a05 NC |
433 | FALSE, /* freeregs */ |
434 | FALSE, /* longcalls */ | |
43cd72b9 | 435 | FALSE, /* literal_prefix */ |
2caa7ca0 | 436 | FALSE, /* schedule */ |
43cd72b9 BW |
437 | #if XSHAL_USE_ABSOLUTE_LITERALS |
438 | TRUE /* absolute_literals */ | |
439 | #else | |
440 | FALSE /* absolute_literals */ | |
441 | #endif | |
e0001a05 NC |
442 | }; |
443 | ||
e0001a05 NC |
444 | |
445 | /* Directive functions. */ | |
446 | ||
7fa3d080 BW |
447 | static void xtensa_begin_directive (int); |
448 | static void xtensa_end_directive (int); | |
74869ac7 | 449 | static void xtensa_literal_prefix (void); |
7fa3d080 BW |
450 | static void xtensa_literal_position (int); |
451 | static void xtensa_literal_pseudo (int); | |
452 | static void xtensa_frequency_pseudo (int); | |
453 | static void xtensa_elf_cons (int); | |
fb227da0 | 454 | static void xtensa_leb128 (int); |
e0001a05 | 455 | |
7fa3d080 | 456 | /* Parsing and Idiom Translation. */ |
e0001a05 | 457 | |
7fa3d080 | 458 | static bfd_reloc_code_real_type xtensa_elf_suffix (char **, expressionS *); |
e0001a05 | 459 | |
e0001a05 NC |
460 | /* Various Other Internal Functions. */ |
461 | ||
84b08ed9 BW |
462 | extern bfd_boolean xg_is_single_relaxable_insn (TInsn *, TInsn *, bfd_boolean); |
463 | static bfd_boolean xg_build_to_insn (TInsn *, TInsn *, BuildInstr *); | |
7fa3d080 BW |
464 | static void xtensa_mark_literal_pool_location (void); |
465 | static addressT get_expanded_loop_offset (xtensa_opcode); | |
466 | static fragS *get_literal_pool_location (segT); | |
467 | static void set_literal_pool_location (segT, fragS *); | |
468 | static void xtensa_set_frag_assembly_state (fragS *); | |
469 | static void finish_vinsn (vliw_insn *); | |
470 | static bfd_boolean emit_single_op (TInsn *); | |
34e41783 | 471 | static int total_frag_text_expansion (fragS *); |
e0001a05 NC |
472 | |
473 | /* Alignment Functions. */ | |
474 | ||
d77b99c9 BW |
475 | static int get_text_align_power (unsigned); |
476 | static int get_text_align_max_fill_size (int, bfd_boolean, bfd_boolean); | |
664df4e4 | 477 | static int branch_align_power (segT); |
e0001a05 NC |
478 | |
479 | /* Helpers for xtensa_relax_frag(). */ | |
480 | ||
7fa3d080 | 481 | static long relax_frag_add_nop (fragS *); |
e0001a05 | 482 | |
b08b5071 | 483 | /* Accessors for additional per-subsegment information. */ |
e0001a05 | 484 | |
7fa3d080 BW |
485 | static unsigned get_last_insn_flags (segT, subsegT); |
486 | static void set_last_insn_flags (segT, subsegT, unsigned, bfd_boolean); | |
b08b5071 BW |
487 | static float get_subseg_total_freq (segT, subsegT); |
488 | static float get_subseg_target_freq (segT, subsegT); | |
489 | static void set_subseg_freq (segT, subsegT, float, float); | |
e0001a05 NC |
490 | |
491 | /* Segment list functions. */ | |
492 | ||
7fa3d080 BW |
493 | static void xtensa_move_literals (void); |
494 | static void xtensa_reorder_segments (void); | |
495 | static void xtensa_switch_to_literal_fragment (emit_state *); | |
496 | static void xtensa_switch_to_non_abs_literal_fragment (emit_state *); | |
497 | static void xtensa_switch_section_emit_state (emit_state *, segT, subsegT); | |
498 | static void xtensa_restore_emit_state (emit_state *); | |
74869ac7 | 499 | static segT cache_literal_section (bfd_boolean); |
e0001a05 | 500 | |
e0001a05 | 501 | /* Import from elf32-xtensa.c in BFD library. */ |
43cd72b9 | 502 | |
51c8ebc1 | 503 | extern asection *xtensa_make_property_section (asection *, const char *); |
e0001a05 | 504 | |
43cd72b9 BW |
505 | /* op_placement_info functions. */ |
506 | ||
7fa3d080 BW |
507 | static void init_op_placement_info_table (void); |
508 | extern bfd_boolean opcode_fits_format_slot (xtensa_opcode, xtensa_format, int); | |
509 | static int xg_get_single_size (xtensa_opcode); | |
510 | static xtensa_format xg_get_single_format (xtensa_opcode); | |
b2d179be | 511 | static int xg_get_single_slot (xtensa_opcode); |
43cd72b9 | 512 | |
e0001a05 | 513 | /* TInsn and IStack functions. */ |
43cd72b9 | 514 | |
7fa3d080 BW |
515 | static bfd_boolean tinsn_has_symbolic_operands (const TInsn *); |
516 | static bfd_boolean tinsn_has_invalid_symbolic_operands (const TInsn *); | |
517 | static bfd_boolean tinsn_has_complex_operands (const TInsn *); | |
518 | static bfd_boolean tinsn_to_insnbuf (TInsn *, xtensa_insnbuf); | |
519 | static bfd_boolean tinsn_check_arguments (const TInsn *); | |
520 | static void tinsn_from_chars (TInsn *, char *, int); | |
521 | static void tinsn_immed_from_frag (TInsn *, fragS *, int); | |
522 | static int get_num_stack_text_bytes (IStack *); | |
523 | static int get_num_stack_literal_bytes (IStack *); | |
e0001a05 | 524 | |
43cd72b9 BW |
525 | /* vliw_insn functions. */ |
526 | ||
7fa3d080 | 527 | static void xg_init_vinsn (vliw_insn *); |
d8392fd9 | 528 | static void xg_copy_vinsn (vliw_insn *, vliw_insn *); |
7fa3d080 BW |
529 | static void xg_clear_vinsn (vliw_insn *); |
530 | static bfd_boolean vinsn_has_specific_opcodes (vliw_insn *); | |
531 | static void xg_free_vinsn (vliw_insn *); | |
43cd72b9 | 532 | static bfd_boolean vinsn_to_insnbuf |
7fa3d080 BW |
533 | (vliw_insn *, char *, fragS *, bfd_boolean); |
534 | static void vinsn_from_chars (vliw_insn *, char *); | |
43cd72b9 | 535 | |
e0001a05 | 536 | /* Expression Utilities. */ |
43cd72b9 | 537 | |
7fa3d080 BW |
538 | bfd_boolean expr_is_const (const expressionS *); |
539 | offsetT get_expr_const (const expressionS *); | |
540 | void set_expr_const (expressionS *, offsetT); | |
541 | bfd_boolean expr_is_register (const expressionS *); | |
542 | offsetT get_expr_register (const expressionS *); | |
543 | void set_expr_symbol_offset (expressionS *, symbolS *, offsetT); | |
7fa3d080 BW |
544 | bfd_boolean expr_is_equal (expressionS *, expressionS *); |
545 | static void copy_expr (expressionS *, const expressionS *); | |
e0001a05 | 546 | |
9456465c BW |
547 | /* Section renaming. */ |
548 | ||
7fa3d080 | 549 | static void build_section_rename (const char *); |
e0001a05 | 550 | |
e0001a05 NC |
551 | |
552 | /* ISA imported from bfd. */ | |
553 | extern xtensa_isa xtensa_default_isa; | |
554 | ||
555 | extern int target_big_endian; | |
556 | ||
557 | static xtensa_opcode xtensa_addi_opcode; | |
558 | static xtensa_opcode xtensa_addmi_opcode; | |
559 | static xtensa_opcode xtensa_call0_opcode; | |
560 | static xtensa_opcode xtensa_call4_opcode; | |
561 | static xtensa_opcode xtensa_call8_opcode; | |
562 | static xtensa_opcode xtensa_call12_opcode; | |
563 | static xtensa_opcode xtensa_callx0_opcode; | |
564 | static xtensa_opcode xtensa_callx4_opcode; | |
565 | static xtensa_opcode xtensa_callx8_opcode; | |
566 | static xtensa_opcode xtensa_callx12_opcode; | |
43cd72b9 | 567 | static xtensa_opcode xtensa_const16_opcode; |
e0001a05 | 568 | static xtensa_opcode xtensa_entry_opcode; |
d12f9798 | 569 | static xtensa_opcode xtensa_extui_opcode; |
43cd72b9 BW |
570 | static xtensa_opcode xtensa_movi_opcode; |
571 | static xtensa_opcode xtensa_movi_n_opcode; | |
e0001a05 | 572 | static xtensa_opcode xtensa_isync_opcode; |
19e8f41a | 573 | static xtensa_opcode xtensa_j_opcode; |
e0001a05 | 574 | static xtensa_opcode xtensa_jx_opcode; |
43cd72b9 | 575 | static xtensa_opcode xtensa_l32r_opcode; |
e0001a05 NC |
576 | static xtensa_opcode xtensa_loop_opcode; |
577 | static xtensa_opcode xtensa_loopnez_opcode; | |
578 | static xtensa_opcode xtensa_loopgtz_opcode; | |
43cd72b9 | 579 | static xtensa_opcode xtensa_nop_opcode; |
e0001a05 NC |
580 | static xtensa_opcode xtensa_nop_n_opcode; |
581 | static xtensa_opcode xtensa_or_opcode; | |
582 | static xtensa_opcode xtensa_ret_opcode; | |
583 | static xtensa_opcode xtensa_ret_n_opcode; | |
584 | static xtensa_opcode xtensa_retw_opcode; | |
585 | static xtensa_opcode xtensa_retw_n_opcode; | |
43cd72b9 | 586 | static xtensa_opcode xtensa_rsr_lcount_opcode; |
e0001a05 | 587 | static xtensa_opcode xtensa_waiti_opcode; |
62af60e2 | 588 | static int config_max_slots = 0; |
e0001a05 NC |
589 | |
590 | \f | |
591 | /* Command-line Options. */ | |
592 | ||
593 | bfd_boolean use_literal_section = TRUE; | |
19fc3723 | 594 | enum flix_level produce_flix = FLIX_ALL; |
e0001a05 | 595 | static bfd_boolean align_targets = TRUE; |
43cd72b9 | 596 | static bfd_boolean warn_unaligned_branch_targets = FALSE; |
e0001a05 | 597 | static bfd_boolean has_a0_b_retw = FALSE; |
43cd72b9 BW |
598 | static bfd_boolean workaround_a0_b_retw = FALSE; |
599 | static bfd_boolean workaround_b_j_loop_end = FALSE; | |
600 | static bfd_boolean workaround_short_loop = FALSE; | |
e0001a05 | 601 | static bfd_boolean maybe_has_short_loop = FALSE; |
43cd72b9 | 602 | static bfd_boolean workaround_close_loop_end = FALSE; |
e0001a05 | 603 | static bfd_boolean maybe_has_close_loop_end = FALSE; |
03aaa593 | 604 | static bfd_boolean enforce_three_byte_loop_align = FALSE; |
e0001a05 | 605 | |
43cd72b9 BW |
606 | /* When workaround_short_loops is TRUE, all loops with early exits must |
607 | have at least 3 instructions. workaround_all_short_loops is a modifier | |
608 | to the workaround_short_loop flag. In addition to the | |
609 | workaround_short_loop actions, all straightline loopgtz and loopnez | |
610 | must have at least 3 instructions. */ | |
e0001a05 | 611 | |
43cd72b9 | 612 | static bfd_boolean workaround_all_short_loops = FALSE; |
e0001a05 | 613 | |
7fa3d080 BW |
614 | |
615 | static void | |
616 | xtensa_setup_hw_workarounds (int earliest, int latest) | |
617 | { | |
618 | if (earliest > latest) | |
619 | as_fatal (_("illegal range of target hardware versions")); | |
620 | ||
621 | /* Enable all workarounds for pre-T1050.0 hardware. */ | |
622 | if (earliest < 105000 || latest < 105000) | |
623 | { | |
624 | workaround_a0_b_retw |= TRUE; | |
625 | workaround_b_j_loop_end |= TRUE; | |
626 | workaround_short_loop |= TRUE; | |
627 | workaround_close_loop_end |= TRUE; | |
628 | workaround_all_short_loops |= TRUE; | |
03aaa593 | 629 | enforce_three_byte_loop_align = TRUE; |
7fa3d080 BW |
630 | } |
631 | } | |
632 | ||
633 | ||
e0001a05 NC |
634 | enum |
635 | { | |
636 | option_density = OPTION_MD_BASE, | |
637 | option_no_density, | |
638 | ||
19fc3723 SA |
639 | option_flix, |
640 | option_no_generate_flix, | |
641 | option_no_flix, | |
642 | ||
e0001a05 NC |
643 | option_relax, |
644 | option_no_relax, | |
645 | ||
43cd72b9 BW |
646 | option_link_relax, |
647 | option_no_link_relax, | |
648 | ||
e0001a05 NC |
649 | option_generics, |
650 | option_no_generics, | |
651 | ||
43cd72b9 BW |
652 | option_transform, |
653 | option_no_transform, | |
654 | ||
e0001a05 NC |
655 | option_text_section_literals, |
656 | option_no_text_section_literals, | |
657 | ||
43cd72b9 BW |
658 | option_absolute_literals, |
659 | option_no_absolute_literals, | |
660 | ||
e0001a05 NC |
661 | option_align_targets, |
662 | option_no_align_targets, | |
663 | ||
43cd72b9 | 664 | option_warn_unaligned_targets, |
e0001a05 NC |
665 | |
666 | option_longcalls, | |
667 | option_no_longcalls, | |
668 | ||
669 | option_workaround_a0_b_retw, | |
670 | option_no_workaround_a0_b_retw, | |
671 | ||
672 | option_workaround_b_j_loop_end, | |
673 | option_no_workaround_b_j_loop_end, | |
674 | ||
675 | option_workaround_short_loop, | |
676 | option_no_workaround_short_loop, | |
677 | ||
678 | option_workaround_all_short_loops, | |
679 | option_no_workaround_all_short_loops, | |
680 | ||
681 | option_workaround_close_loop_end, | |
682 | option_no_workaround_close_loop_end, | |
683 | ||
684 | option_no_workarounds, | |
685 | ||
e0001a05 | 686 | option_rename_section_name, |
e0001a05 | 687 | |
43cd72b9 BW |
688 | option_prefer_l32r, |
689 | option_prefer_const16, | |
690 | ||
691 | option_target_hardware | |
e0001a05 NC |
692 | }; |
693 | ||
694 | const char *md_shortopts = ""; | |
695 | ||
696 | struct option md_longopts[] = | |
697 | { | |
43cd72b9 BW |
698 | { "density", no_argument, NULL, option_density }, |
699 | { "no-density", no_argument, NULL, option_no_density }, | |
700 | ||
19fc3723 SA |
701 | { "flix", no_argument, NULL, option_flix }, |
702 | { "no-generate-flix", no_argument, NULL, option_no_generate_flix }, | |
703 | { "no-allow-flix", no_argument, NULL, option_no_flix }, | |
704 | ||
43cd72b9 BW |
705 | /* Both "relax" and "generics" are deprecated and treated as equivalent |
706 | to the "transform" option. */ | |
707 | { "relax", no_argument, NULL, option_relax }, | |
708 | { "no-relax", no_argument, NULL, option_no_relax }, | |
709 | { "generics", no_argument, NULL, option_generics }, | |
710 | { "no-generics", no_argument, NULL, option_no_generics }, | |
711 | ||
712 | { "transform", no_argument, NULL, option_transform }, | |
713 | { "no-transform", no_argument, NULL, option_no_transform }, | |
714 | { "text-section-literals", no_argument, NULL, option_text_section_literals }, | |
715 | { "no-text-section-literals", no_argument, NULL, | |
716 | option_no_text_section_literals }, | |
717 | { "absolute-literals", no_argument, NULL, option_absolute_literals }, | |
718 | { "no-absolute-literals", no_argument, NULL, option_no_absolute_literals }, | |
e0001a05 NC |
719 | /* This option was changed from -align-target to -target-align |
720 | because it conflicted with the "-al" option. */ | |
43cd72b9 | 721 | { "target-align", no_argument, NULL, option_align_targets }, |
7fa3d080 BW |
722 | { "no-target-align", no_argument, NULL, option_no_align_targets }, |
723 | { "warn-unaligned-targets", no_argument, NULL, | |
724 | option_warn_unaligned_targets }, | |
43cd72b9 BW |
725 | { "longcalls", no_argument, NULL, option_longcalls }, |
726 | { "no-longcalls", no_argument, NULL, option_no_longcalls }, | |
727 | ||
728 | { "no-workaround-a0-b-retw", no_argument, NULL, | |
729 | option_no_workaround_a0_b_retw }, | |
730 | { "workaround-a0-b-retw", no_argument, NULL, option_workaround_a0_b_retw }, | |
e0001a05 | 731 | |
43cd72b9 BW |
732 | { "no-workaround-b-j-loop-end", no_argument, NULL, |
733 | option_no_workaround_b_j_loop_end }, | |
734 | { "workaround-b-j-loop-end", no_argument, NULL, | |
735 | option_workaround_b_j_loop_end }, | |
e0001a05 | 736 | |
43cd72b9 BW |
737 | { "no-workaround-short-loops", no_argument, NULL, |
738 | option_no_workaround_short_loop }, | |
7fa3d080 BW |
739 | { "workaround-short-loops", no_argument, NULL, |
740 | option_workaround_short_loop }, | |
e0001a05 | 741 | |
43cd72b9 BW |
742 | { "no-workaround-all-short-loops", no_argument, NULL, |
743 | option_no_workaround_all_short_loops }, | |
744 | { "workaround-all-short-loop", no_argument, NULL, | |
745 | option_workaround_all_short_loops }, | |
746 | ||
747 | { "prefer-l32r", no_argument, NULL, option_prefer_l32r }, | |
748 | { "prefer-const16", no_argument, NULL, option_prefer_const16 }, | |
749 | ||
750 | { "no-workarounds", no_argument, NULL, option_no_workarounds }, | |
751 | ||
752 | { "no-workaround-close-loop-end", no_argument, NULL, | |
753 | option_no_workaround_close_loop_end }, | |
754 | { "workaround-close-loop-end", no_argument, NULL, | |
755 | option_workaround_close_loop_end }, | |
e0001a05 | 756 | |
7fa3d080 | 757 | { "rename-section", required_argument, NULL, option_rename_section_name }, |
e0001a05 | 758 | |
43cd72b9 BW |
759 | { "link-relax", no_argument, NULL, option_link_relax }, |
760 | { "no-link-relax", no_argument, NULL, option_no_link_relax }, | |
761 | ||
762 | { "target-hardware", required_argument, NULL, option_target_hardware }, | |
763 | ||
764 | { NULL, no_argument, NULL, 0 } | |
e0001a05 NC |
765 | }; |
766 | ||
767 | size_t md_longopts_size = sizeof md_longopts; | |
768 | ||
769 | ||
770 | int | |
7fa3d080 | 771 | md_parse_option (int c, char *arg) |
e0001a05 NC |
772 | { |
773 | switch (c) | |
774 | { | |
775 | case option_density: | |
43cd72b9 | 776 | as_warn (_("--density option is ignored")); |
e0001a05 NC |
777 | return 1; |
778 | case option_no_density: | |
43cd72b9 | 779 | as_warn (_("--no-density option is ignored")); |
e0001a05 | 780 | return 1; |
43cd72b9 BW |
781 | case option_link_relax: |
782 | linkrelax = 1; | |
e0001a05 | 783 | return 1; |
43cd72b9 BW |
784 | case option_no_link_relax: |
785 | linkrelax = 0; | |
e0001a05 | 786 | return 1; |
19fc3723 SA |
787 | case option_flix: |
788 | produce_flix = FLIX_ALL; | |
789 | return 1; | |
790 | case option_no_generate_flix: | |
791 | produce_flix = FLIX_NO_GENERATE; | |
792 | return 1; | |
793 | case option_no_flix: | |
794 | produce_flix = FLIX_NONE; | |
795 | return 1; | |
43cd72b9 BW |
796 | case option_generics: |
797 | as_warn (_("--generics is deprecated; use --transform instead")); | |
798 | return md_parse_option (option_transform, arg); | |
799 | case option_no_generics: | |
800 | as_warn (_("--no-generics is deprecated; use --no-transform instead")); | |
801 | return md_parse_option (option_no_transform, arg); | |
802 | case option_relax: | |
803 | as_warn (_("--relax is deprecated; use --transform instead")); | |
804 | return md_parse_option (option_transform, arg); | |
805 | case option_no_relax: | |
806 | as_warn (_("--no-relax is deprecated; use --no-transform instead")); | |
807 | return md_parse_option (option_no_transform, arg); | |
e0001a05 NC |
808 | case option_longcalls: |
809 | directive_state[directive_longcalls] = TRUE; | |
810 | return 1; | |
811 | case option_no_longcalls: | |
812 | directive_state[directive_longcalls] = FALSE; | |
813 | return 1; | |
814 | case option_text_section_literals: | |
815 | use_literal_section = FALSE; | |
816 | return 1; | |
817 | case option_no_text_section_literals: | |
818 | use_literal_section = TRUE; | |
819 | return 1; | |
43cd72b9 BW |
820 | case option_absolute_literals: |
821 | if (!absolute_literals_supported) | |
822 | { | |
823 | as_fatal (_("--absolute-literals option not supported in this Xtensa configuration")); | |
824 | return 0; | |
825 | } | |
826 | directive_state[directive_absolute_literals] = TRUE; | |
827 | return 1; | |
828 | case option_no_absolute_literals: | |
829 | directive_state[directive_absolute_literals] = FALSE; | |
830 | return 1; | |
831 | ||
e0001a05 NC |
832 | case option_workaround_a0_b_retw: |
833 | workaround_a0_b_retw = TRUE; | |
e0001a05 NC |
834 | return 1; |
835 | case option_no_workaround_a0_b_retw: | |
836 | workaround_a0_b_retw = FALSE; | |
e0001a05 NC |
837 | return 1; |
838 | case option_workaround_b_j_loop_end: | |
839 | workaround_b_j_loop_end = TRUE; | |
e0001a05 NC |
840 | return 1; |
841 | case option_no_workaround_b_j_loop_end: | |
842 | workaround_b_j_loop_end = FALSE; | |
e0001a05 NC |
843 | return 1; |
844 | ||
845 | case option_workaround_short_loop: | |
846 | workaround_short_loop = TRUE; | |
e0001a05 NC |
847 | return 1; |
848 | case option_no_workaround_short_loop: | |
849 | workaround_short_loop = FALSE; | |
e0001a05 NC |
850 | return 1; |
851 | ||
852 | case option_workaround_all_short_loops: | |
853 | workaround_all_short_loops = TRUE; | |
e0001a05 NC |
854 | return 1; |
855 | case option_no_workaround_all_short_loops: | |
856 | workaround_all_short_loops = FALSE; | |
e0001a05 NC |
857 | return 1; |
858 | ||
859 | case option_workaround_close_loop_end: | |
860 | workaround_close_loop_end = TRUE; | |
e0001a05 NC |
861 | return 1; |
862 | case option_no_workaround_close_loop_end: | |
863 | workaround_close_loop_end = FALSE; | |
e0001a05 NC |
864 | return 1; |
865 | ||
866 | case option_no_workarounds: | |
867 | workaround_a0_b_retw = FALSE; | |
e0001a05 | 868 | workaround_b_j_loop_end = FALSE; |
e0001a05 | 869 | workaround_short_loop = FALSE; |
e0001a05 | 870 | workaround_all_short_loops = FALSE; |
e0001a05 | 871 | workaround_close_loop_end = FALSE; |
e0001a05 | 872 | return 1; |
43cd72b9 | 873 | |
e0001a05 NC |
874 | case option_align_targets: |
875 | align_targets = TRUE; | |
876 | return 1; | |
877 | case option_no_align_targets: | |
878 | align_targets = FALSE; | |
879 | return 1; | |
880 | ||
43cd72b9 BW |
881 | case option_warn_unaligned_targets: |
882 | warn_unaligned_branch_targets = TRUE; | |
e0001a05 NC |
883 | return 1; |
884 | ||
e0001a05 NC |
885 | case option_rename_section_name: |
886 | build_section_rename (arg); | |
887 | return 1; | |
e0001a05 NC |
888 | |
889 | case 'Q': | |
890 | /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section | |
891 | should be emitted or not. FIXME: Not implemented. */ | |
892 | return 1; | |
c138bc38 | 893 | |
43cd72b9 BW |
894 | case option_prefer_l32r: |
895 | if (prefer_const16) | |
896 | as_fatal (_("prefer-l32r conflicts with prefer-const16")); | |
897 | prefer_l32r = 1; | |
898 | return 1; | |
899 | ||
900 | case option_prefer_const16: | |
901 | if (prefer_l32r) | |
902 | as_fatal (_("prefer-const16 conflicts with prefer-l32r")); | |
903 | prefer_const16 = 1; | |
904 | return 1; | |
905 | ||
c138bc38 | 906 | case option_target_hardware: |
43cd72b9 BW |
907 | { |
908 | int earliest, latest = 0; | |
909 | if (*arg == 0 || *arg == '-') | |
910 | as_fatal (_("invalid target hardware version")); | |
911 | ||
912 | earliest = strtol (arg, &arg, 0); | |
913 | ||
914 | if (*arg == 0) | |
915 | latest = earliest; | |
916 | else if (*arg == '-') | |
917 | { | |
918 | if (*++arg == 0) | |
919 | as_fatal (_("invalid target hardware version")); | |
920 | latest = strtol (arg, &arg, 0); | |
921 | } | |
922 | if (*arg != 0) | |
923 | as_fatal (_("invalid target hardware version")); | |
924 | ||
925 | xtensa_setup_hw_workarounds (earliest, latest); | |
926 | return 1; | |
927 | } | |
928 | ||
929 | case option_transform: | |
930 | /* This option has no affect other than to use the defaults, | |
931 | which are already set. */ | |
932 | return 1; | |
933 | ||
934 | case option_no_transform: | |
935 | /* This option turns off all transformations of any kind. | |
936 | However, because we want to preserve the state of other | |
937 | directives, we only change its own field. Thus, before | |
938 | you perform any transformation, always check if transform | |
939 | is available. If you use the functions we provide for this | |
940 | purpose, you will be ok. */ | |
941 | directive_state[directive_transform] = FALSE; | |
942 | return 1; | |
943 | ||
e0001a05 NC |
944 | default: |
945 | return 0; | |
946 | } | |
947 | } | |
948 | ||
949 | ||
950 | void | |
7fa3d080 | 951 | md_show_usage (FILE *stream) |
e0001a05 | 952 | { |
43cd72b9 BW |
953 | fputs ("\n\ |
954 | Xtensa options:\n\ | |
9456465c BW |
955 | --[no-]text-section-literals\n\ |
956 | [Do not] put literals in the text section\n\ | |
957 | --[no-]absolute-literals\n\ | |
958 | [Do not] default to use non-PC-relative literals\n\ | |
959 | --[no-]target-align [Do not] try to align branch targets\n\ | |
960 | --[no-]longcalls [Do not] emit 32-bit call sequences\n\ | |
961 | --[no-]transform [Do not] transform instructions\n\ | |
19fc3723 SA |
962 | --flix both allow hand-written and generate flix bundles\n\ |
963 | --no-generate-flix allow hand-written but do not generate\n\ | |
964 | flix bundles\n\ | |
965 | --no-allow-flix neither allow hand-written nor generate\n\ | |
966 | flix bundles\n\ | |
9456465c | 967 | --rename-section old=new Rename section 'old' to 'new'\n", stream); |
e0001a05 NC |
968 | } |
969 | ||
7fa3d080 BW |
970 | \f |
971 | /* Functions related to the list of current label symbols. */ | |
43cd72b9 BW |
972 | |
973 | static void | |
7fa3d080 | 974 | xtensa_add_insn_label (symbolS *sym) |
43cd72b9 | 975 | { |
7fa3d080 | 976 | sym_list *l; |
43cd72b9 | 977 | |
7fa3d080 BW |
978 | if (!free_insn_labels) |
979 | l = (sym_list *) xmalloc (sizeof (sym_list)); | |
980 | else | |
43cd72b9 | 981 | { |
7fa3d080 BW |
982 | l = free_insn_labels; |
983 | free_insn_labels = l->next; | |
984 | } | |
985 | ||
986 | l->sym = sym; | |
987 | l->next = insn_labels; | |
988 | insn_labels = l; | |
989 | } | |
990 | ||
991 | ||
992 | static void | |
993 | xtensa_clear_insn_labels (void) | |
994 | { | |
995 | sym_list **pl; | |
996 | ||
997 | for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next) | |
998 | ; | |
999 | *pl = insn_labels; | |
1000 | insn_labels = NULL; | |
1001 | } | |
1002 | ||
1003 | ||
7fa3d080 | 1004 | static void |
c3ea6048 | 1005 | xtensa_move_labels (fragS *new_frag, valueT new_offset) |
7fa3d080 BW |
1006 | { |
1007 | sym_list *lit; | |
1008 | ||
1009 | for (lit = insn_labels; lit; lit = lit->next) | |
1010 | { | |
1011 | symbolS *lit_sym = lit->sym; | |
c3ea6048 BW |
1012 | S_SET_VALUE (lit_sym, new_offset); |
1013 | symbol_set_frag (lit_sym, new_frag); | |
43cd72b9 BW |
1014 | } |
1015 | } | |
1016 | ||
e0001a05 NC |
1017 | \f |
1018 | /* Directive data and functions. */ | |
1019 | ||
1020 | typedef struct state_stackS_struct | |
1021 | { | |
1022 | directiveE directive; | |
1023 | bfd_boolean negated; | |
1024 | bfd_boolean old_state; | |
1025 | const char *file; | |
1026 | unsigned int line; | |
1027 | const void *datum; | |
1028 | struct state_stackS_struct *prev; | |
1029 | } state_stackS; | |
1030 | ||
1031 | state_stackS *directive_state_stack; | |
1032 | ||
1033 | const pseudo_typeS md_pseudo_table[] = | |
1034 | { | |
43cd72b9 BW |
1035 | { "align", s_align_bytes, 0 }, /* Defaulting is invalid (0). */ |
1036 | { "literal_position", xtensa_literal_position, 0 }, | |
1037 | { "frame", s_ignore, 0 }, /* Formerly used for STABS debugging. */ | |
1038 | { "long", xtensa_elf_cons, 4 }, | |
1039 | { "word", xtensa_elf_cons, 4 }, | |
1bbb5f21 | 1040 | { "4byte", xtensa_elf_cons, 4 }, |
43cd72b9 | 1041 | { "short", xtensa_elf_cons, 2 }, |
1bbb5f21 | 1042 | { "2byte", xtensa_elf_cons, 2 }, |
fb227da0 BW |
1043 | { "sleb128", xtensa_leb128, 1}, |
1044 | { "uleb128", xtensa_leb128, 0}, | |
43cd72b9 BW |
1045 | { "begin", xtensa_begin_directive, 0 }, |
1046 | { "end", xtensa_end_directive, 0 }, | |
43cd72b9 BW |
1047 | { "literal", xtensa_literal_pseudo, 0 }, |
1048 | { "frequency", xtensa_frequency_pseudo, 0 }, | |
1049 | { NULL, 0, 0 }, | |
e0001a05 NC |
1050 | }; |
1051 | ||
1052 | ||
7fa3d080 BW |
1053 | static bfd_boolean |
1054 | use_transform (void) | |
e0001a05 | 1055 | { |
43cd72b9 BW |
1056 | /* After md_end, you should be checking frag by frag, rather |
1057 | than state directives. */ | |
9c2799c2 | 1058 | gas_assert (!past_xtensa_end); |
43cd72b9 | 1059 | return directive_state[directive_transform]; |
e0001a05 NC |
1060 | } |
1061 | ||
1062 | ||
7fa3d080 BW |
1063 | static bfd_boolean |
1064 | do_align_targets (void) | |
e0001a05 | 1065 | { |
7b1cc377 BW |
1066 | /* Do not use this function after md_end; just look at align_targets |
1067 | instead. There is no target-align directive, so alignment is either | |
1068 | enabled for all frags or not done at all. */ | |
9c2799c2 | 1069 | gas_assert (!past_xtensa_end); |
43cd72b9 | 1070 | return align_targets && use_transform (); |
e0001a05 NC |
1071 | } |
1072 | ||
1073 | ||
1074 | static void | |
7fa3d080 | 1075 | directive_push (directiveE directive, bfd_boolean negated, const void *datum) |
e0001a05 NC |
1076 | { |
1077 | char *file; | |
1078 | unsigned int line; | |
1079 | state_stackS *stack = (state_stackS *) xmalloc (sizeof (state_stackS)); | |
1080 | ||
1081 | as_where (&file, &line); | |
1082 | ||
1083 | stack->directive = directive; | |
1084 | stack->negated = negated; | |
1085 | stack->old_state = directive_state[directive]; | |
1086 | stack->file = file; | |
1087 | stack->line = line; | |
1088 | stack->datum = datum; | |
1089 | stack->prev = directive_state_stack; | |
1090 | directive_state_stack = stack; | |
1091 | ||
1092 | directive_state[directive] = !negated; | |
1093 | } | |
1094 | ||
7fa3d080 | 1095 | |
e0001a05 | 1096 | static void |
7fa3d080 BW |
1097 | directive_pop (directiveE *directive, |
1098 | bfd_boolean *negated, | |
1099 | const char **file, | |
1100 | unsigned int *line, | |
1101 | const void **datum) | |
e0001a05 NC |
1102 | { |
1103 | state_stackS *top = directive_state_stack; | |
1104 | ||
1105 | if (!directive_state_stack) | |
1106 | { | |
1107 | as_bad (_("unmatched end directive")); | |
1108 | *directive = directive_none; | |
1109 | return; | |
1110 | } | |
1111 | ||
1112 | directive_state[directive_state_stack->directive] = top->old_state; | |
1113 | *directive = top->directive; | |
1114 | *negated = top->negated; | |
1115 | *file = top->file; | |
1116 | *line = top->line; | |
1117 | *datum = top->datum; | |
1118 | directive_state_stack = top->prev; | |
1119 | free (top); | |
1120 | } | |
1121 | ||
1122 | ||
1123 | static void | |
7fa3d080 | 1124 | directive_balance (void) |
e0001a05 NC |
1125 | { |
1126 | while (directive_state_stack) | |
1127 | { | |
1128 | directiveE directive; | |
1129 | bfd_boolean negated; | |
1130 | const char *file; | |
1131 | unsigned int line; | |
1132 | const void *datum; | |
1133 | ||
1134 | directive_pop (&directive, &negated, &file, &line, &datum); | |
1135 | as_warn_where ((char *) file, line, | |
1136 | _(".begin directive with no matching .end directive")); | |
1137 | } | |
1138 | } | |
1139 | ||
1140 | ||
1141 | static bfd_boolean | |
7fa3d080 | 1142 | inside_directive (directiveE dir) |
e0001a05 NC |
1143 | { |
1144 | state_stackS *top = directive_state_stack; | |
1145 | ||
1146 | while (top && top->directive != dir) | |
1147 | top = top->prev; | |
1148 | ||
1149 | return (top != NULL); | |
1150 | } | |
1151 | ||
1152 | ||
1153 | static void | |
7fa3d080 | 1154 | get_directive (directiveE *directive, bfd_boolean *negated) |
e0001a05 NC |
1155 | { |
1156 | int len; | |
1157 | unsigned i; | |
43cd72b9 | 1158 | char *directive_string; |
e0001a05 NC |
1159 | |
1160 | if (strncmp (input_line_pointer, "no-", 3) != 0) | |
1161 | *negated = FALSE; | |
1162 | else | |
1163 | { | |
1164 | *negated = TRUE; | |
1165 | input_line_pointer += 3; | |
1166 | } | |
1167 | ||
1168 | len = strspn (input_line_pointer, | |
43cd72b9 BW |
1169 | "abcdefghijklmnopqrstuvwxyz_-/0123456789."); |
1170 | ||
1171 | /* This code is a hack to make .begin [no-][generics|relax] exactly | |
1172 | equivalent to .begin [no-]transform. We should remove it when | |
1173 | we stop accepting those options. */ | |
c138bc38 | 1174 | |
43cd72b9 BW |
1175 | if (strncmp (input_line_pointer, "generics", strlen ("generics")) == 0) |
1176 | { | |
1177 | as_warn (_("[no-]generics is deprecated; use [no-]transform instead")); | |
1178 | directive_string = "transform"; | |
1179 | } | |
1180 | else if (strncmp (input_line_pointer, "relax", strlen ("relax")) == 0) | |
1181 | { | |
1182 | as_warn (_("[no-]relax is deprecated; use [no-]transform instead")); | |
1183 | directive_string = "transform"; | |
c138bc38 | 1184 | } |
43cd72b9 BW |
1185 | else |
1186 | directive_string = input_line_pointer; | |
e0001a05 NC |
1187 | |
1188 | for (i = 0; i < sizeof (directive_info) / sizeof (*directive_info); ++i) | |
1189 | { | |
43cd72b9 | 1190 | if (strncmp (directive_string, directive_info[i].name, len) == 0) |
e0001a05 NC |
1191 | { |
1192 | input_line_pointer += len; | |
1193 | *directive = (directiveE) i; | |
1194 | if (*negated && !directive_info[i].can_be_negated) | |
43cd72b9 | 1195 | as_bad (_("directive %s cannot be negated"), |
e0001a05 NC |
1196 | directive_info[i].name); |
1197 | return; | |
1198 | } | |
1199 | } | |
1200 | ||
1201 | as_bad (_("unknown directive")); | |
1202 | *directive = (directiveE) XTENSA_UNDEFINED; | |
1203 | } | |
1204 | ||
1205 | ||
1206 | static void | |
7fa3d080 | 1207 | xtensa_begin_directive (int ignore ATTRIBUTE_UNUSED) |
e0001a05 NC |
1208 | { |
1209 | directiveE directive; | |
1210 | bfd_boolean negated; | |
1211 | emit_state *state; | |
e0001a05 NC |
1212 | lit_state *ls; |
1213 | ||
1214 | get_directive (&directive, &negated); | |
1215 | if (directive == (directiveE) XTENSA_UNDEFINED) | |
1216 | { | |
1217 | discard_rest_of_line (); | |
1218 | return; | |
1219 | } | |
1220 | ||
43cd72b9 BW |
1221 | if (cur_vinsn.inside_bundle) |
1222 | as_bad (_("directives are not valid inside bundles")); | |
1223 | ||
e0001a05 NC |
1224 | switch (directive) |
1225 | { | |
1226 | case directive_literal: | |
82e7541d BW |
1227 | if (!inside_directive (directive_literal)) |
1228 | { | |
1229 | /* Previous labels go with whatever follows this directive, not with | |
1230 | the literal, so save them now. */ | |
1231 | saved_insn_labels = insn_labels; | |
1232 | insn_labels = NULL; | |
1233 | } | |
43cd72b9 | 1234 | as_warn (_(".begin literal is deprecated; use .literal instead")); |
e0001a05 NC |
1235 | state = (emit_state *) xmalloc (sizeof (emit_state)); |
1236 | xtensa_switch_to_literal_fragment (state); | |
1237 | directive_push (directive_literal, negated, state); | |
1238 | break; | |
1239 | ||
1240 | case directive_literal_prefix: | |
c138bc38 | 1241 | /* Have to flush pending output because a movi relaxed to an l32r |
43cd72b9 BW |
1242 | might produce a literal. */ |
1243 | md_flush_pending_output (); | |
e0001a05 NC |
1244 | /* Check to see if the current fragment is a literal |
1245 | fragment. If it is, then this operation is not allowed. */ | |
43cd72b9 | 1246 | if (generating_literals) |
e0001a05 NC |
1247 | { |
1248 | as_bad (_("cannot set literal_prefix inside literal fragment")); | |
1249 | return; | |
1250 | } | |
1251 | ||
1252 | /* Allocate the literal state for this section and push | |
1253 | onto the directive stack. */ | |
1254 | ls = xmalloc (sizeof (lit_state)); | |
9c2799c2 | 1255 | gas_assert (ls); |
e0001a05 NC |
1256 | |
1257 | *ls = default_lit_sections; | |
e0001a05 NC |
1258 | directive_push (directive_literal_prefix, negated, ls); |
1259 | ||
e0001a05 | 1260 | /* Process the new prefix. */ |
74869ac7 | 1261 | xtensa_literal_prefix (); |
e0001a05 NC |
1262 | break; |
1263 | ||
1264 | case directive_freeregs: | |
1265 | /* This information is currently unused, but we'll accept the statement | |
1266 | and just discard the rest of the line. This won't check the syntax, | |
1267 | but it will accept every correct freeregs directive. */ | |
1268 | input_line_pointer += strcspn (input_line_pointer, "\n"); | |
1269 | directive_push (directive_freeregs, negated, 0); | |
1270 | break; | |
1271 | ||
43cd72b9 BW |
1272 | case directive_schedule: |
1273 | md_flush_pending_output (); | |
1274 | frag_var (rs_fill, 0, 0, frag_now->fr_subtype, | |
1275 | frag_now->fr_symbol, frag_now->fr_offset, NULL); | |
1276 | directive_push (directive_schedule, negated, 0); | |
1277 | xtensa_set_frag_assembly_state (frag_now); | |
1278 | break; | |
1279 | ||
e0001a05 | 1280 | case directive_density: |
43cd72b9 BW |
1281 | as_warn (_(".begin [no-]density is ignored")); |
1282 | break; | |
1283 | ||
1284 | case directive_absolute_literals: | |
1285 | md_flush_pending_output (); | |
1286 | if (!absolute_literals_supported && !negated) | |
e0001a05 | 1287 | { |
43cd72b9 | 1288 | as_warn (_("Xtensa absolute literals option not supported; ignored")); |
e0001a05 NC |
1289 | break; |
1290 | } | |
43cd72b9 BW |
1291 | xtensa_set_frag_assembly_state (frag_now); |
1292 | directive_push (directive, negated, 0); | |
1293 | break; | |
e0001a05 NC |
1294 | |
1295 | default: | |
43cd72b9 BW |
1296 | md_flush_pending_output (); |
1297 | xtensa_set_frag_assembly_state (frag_now); | |
e0001a05 NC |
1298 | directive_push (directive, negated, 0); |
1299 | break; | |
1300 | } | |
1301 | ||
1302 | demand_empty_rest_of_line (); | |
1303 | } | |
1304 | ||
1305 | ||
1306 | static void | |
7fa3d080 | 1307 | xtensa_end_directive (int ignore ATTRIBUTE_UNUSED) |
e0001a05 NC |
1308 | { |
1309 | directiveE begin_directive, end_directive; | |
1310 | bfd_boolean begin_negated, end_negated; | |
1311 | const char *file; | |
1312 | unsigned int line; | |
1313 | emit_state *state; | |
43cd72b9 | 1314 | emit_state **state_ptr; |
e0001a05 NC |
1315 | lit_state *s; |
1316 | ||
43cd72b9 BW |
1317 | if (cur_vinsn.inside_bundle) |
1318 | as_bad (_("directives are not valid inside bundles")); | |
82e7541d | 1319 | |
e0001a05 | 1320 | get_directive (&end_directive, &end_negated); |
43cd72b9 BW |
1321 | |
1322 | md_flush_pending_output (); | |
1323 | ||
1324 | switch (end_directive) | |
e0001a05 | 1325 | { |
43cd72b9 | 1326 | case (directiveE) XTENSA_UNDEFINED: |
e0001a05 NC |
1327 | discard_rest_of_line (); |
1328 | return; | |
e0001a05 | 1329 | |
43cd72b9 BW |
1330 | case directive_density: |
1331 | as_warn (_(".end [no-]density is ignored")); | |
e0001a05 | 1332 | demand_empty_rest_of_line (); |
43cd72b9 BW |
1333 | break; |
1334 | ||
1335 | case directive_absolute_literals: | |
1336 | if (!absolute_literals_supported && !end_negated) | |
1337 | { | |
1338 | as_warn (_("Xtensa absolute literals option not supported; ignored")); | |
1339 | demand_empty_rest_of_line (); | |
1340 | return; | |
1341 | } | |
1342 | break; | |
1343 | ||
1344 | default: | |
1345 | break; | |
e0001a05 NC |
1346 | } |
1347 | ||
43cd72b9 | 1348 | state_ptr = &state; /* use state_ptr to avoid type-punning warning */ |
e0001a05 | 1349 | directive_pop (&begin_directive, &begin_negated, &file, &line, |
43cd72b9 | 1350 | (const void **) state_ptr); |
e0001a05 NC |
1351 | |
1352 | if (begin_directive != directive_none) | |
1353 | { | |
1354 | if (begin_directive != end_directive || begin_negated != end_negated) | |
1355 | { | |
1356 | as_bad (_("does not match begin %s%s at %s:%d"), | |
1357 | begin_negated ? "no-" : "", | |
1358 | directive_info[begin_directive].name, file, line); | |
1359 | } | |
1360 | else | |
1361 | { | |
1362 | switch (end_directive) | |
1363 | { | |
1364 | case directive_literal: | |
1365 | frag_var (rs_fill, 0, 0, 0, NULL, 0, NULL); | |
1366 | xtensa_restore_emit_state (state); | |
43cd72b9 | 1367 | xtensa_set_frag_assembly_state (frag_now); |
e0001a05 | 1368 | free (state); |
82e7541d BW |
1369 | if (!inside_directive (directive_literal)) |
1370 | { | |
1371 | /* Restore the list of current labels. */ | |
1372 | xtensa_clear_insn_labels (); | |
1373 | insn_labels = saved_insn_labels; | |
1374 | } | |
e0001a05 NC |
1375 | break; |
1376 | ||
e0001a05 NC |
1377 | case directive_literal_prefix: |
1378 | /* Restore the default collection sections from saved state. */ | |
1379 | s = (lit_state *) state; | |
9c2799c2 | 1380 | gas_assert (s); |
e8247da7 | 1381 | default_lit_sections = *s; |
e0001a05 | 1382 | |
74869ac7 BW |
1383 | /* Free the state storage. */ |
1384 | free (s->lit_prefix); | |
e0001a05 NC |
1385 | free (s); |
1386 | break; | |
1387 | ||
43cd72b9 BW |
1388 | case directive_schedule: |
1389 | case directive_freeregs: | |
1390 | break; | |
1391 | ||
e0001a05 | 1392 | default: |
43cd72b9 | 1393 | xtensa_set_frag_assembly_state (frag_now); |
e0001a05 NC |
1394 | break; |
1395 | } | |
1396 | } | |
1397 | } | |
1398 | ||
1399 | demand_empty_rest_of_line (); | |
1400 | } | |
1401 | ||
1402 | ||
1403 | /* Place an aligned literal fragment at the current location. */ | |
1404 | ||
1405 | static void | |
7fa3d080 | 1406 | xtensa_literal_position (int ignore ATTRIBUTE_UNUSED) |
e0001a05 | 1407 | { |
43cd72b9 BW |
1408 | md_flush_pending_output (); |
1409 | ||
e0001a05 NC |
1410 | if (inside_directive (directive_literal)) |
1411 | as_warn (_(".literal_position inside literal directive; ignoring")); | |
43cd72b9 | 1412 | xtensa_mark_literal_pool_location (); |
e0001a05 NC |
1413 | |
1414 | demand_empty_rest_of_line (); | |
82e7541d | 1415 | xtensa_clear_insn_labels (); |
e0001a05 NC |
1416 | } |
1417 | ||
1418 | ||
43cd72b9 | 1419 | /* Support .literal label, expr, ... */ |
e0001a05 NC |
1420 | |
1421 | static void | |
7fa3d080 | 1422 | xtensa_literal_pseudo (int ignored ATTRIBUTE_UNUSED) |
e0001a05 NC |
1423 | { |
1424 | emit_state state; | |
1745fcba | 1425 | char *p, *base_name; |
e0001a05 | 1426 | char c; |
e0001a05 NC |
1427 | segT dest_seg; |
1428 | ||
82e7541d BW |
1429 | if (inside_directive (directive_literal)) |
1430 | { | |
1431 | as_bad (_(".literal not allowed inside .begin literal region")); | |
1432 | ignore_rest_of_line (); | |
1433 | return; | |
1434 | } | |
1435 | ||
43cd72b9 BW |
1436 | md_flush_pending_output (); |
1437 | ||
82e7541d BW |
1438 | /* Previous labels go with whatever follows this directive, not with |
1439 | the literal, so save them now. */ | |
1440 | saved_insn_labels = insn_labels; | |
1441 | insn_labels = NULL; | |
1442 | ||
e0001a05 NC |
1443 | /* If we are using text-section literals, then this is the right value... */ |
1444 | dest_seg = now_seg; | |
1445 | ||
1446 | base_name = input_line_pointer; | |
1447 | ||
1448 | xtensa_switch_to_literal_fragment (&state); | |
1449 | ||
43cd72b9 | 1450 | /* ...but if we aren't using text-section-literals, then we |
e0001a05 | 1451 | need to put them in the section we just switched to. */ |
43cd72b9 | 1452 | if (use_literal_section || directive_state[directive_absolute_literals]) |
e0001a05 NC |
1453 | dest_seg = now_seg; |
1454 | ||
43cd72b9 BW |
1455 | /* All literals are aligned to four-byte boundaries. */ |
1456 | frag_align (2, 0, 0); | |
1457 | record_alignment (now_seg, 2); | |
e0001a05 NC |
1458 | |
1459 | c = get_symbol_end (); | |
1460 | /* Just after name is now '\0'. */ | |
1461 | p = input_line_pointer; | |
1462 | *p = c; | |
1463 | SKIP_WHITESPACE (); | |
1464 | ||
1465 | if (*input_line_pointer != ',' && *input_line_pointer != ':') | |
1466 | { | |
1467 | as_bad (_("expected comma or colon after symbol name; " | |
1468 | "rest of line ignored")); | |
1469 | ignore_rest_of_line (); | |
1470 | xtensa_restore_emit_state (&state); | |
1471 | return; | |
1472 | } | |
1473 | *p = 0; | |
1474 | ||
e0001a05 | 1475 | colon (base_name); |
e0001a05 | 1476 | |
e0001a05 | 1477 | *p = c; |
43cd72b9 | 1478 | input_line_pointer++; /* skip ',' or ':' */ |
e0001a05 | 1479 | |
43cd72b9 | 1480 | xtensa_elf_cons (4); |
e0001a05 NC |
1481 | |
1482 | xtensa_restore_emit_state (&state); | |
82e7541d BW |
1483 | |
1484 | /* Restore the list of current labels. */ | |
1485 | xtensa_clear_insn_labels (); | |
1486 | insn_labels = saved_insn_labels; | |
e0001a05 NC |
1487 | } |
1488 | ||
1489 | ||
1490 | static void | |
74869ac7 | 1491 | xtensa_literal_prefix (void) |
e0001a05 | 1492 | { |
74869ac7 BW |
1493 | char *name; |
1494 | int len; | |
1495 | ||
1496 | /* Parse the new prefix from the input_line_pointer. */ | |
1497 | SKIP_WHITESPACE (); | |
1498 | len = strspn (input_line_pointer, | |
1499 | "ABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
1500 | "abcdefghijklmnopqrstuvwxyz_/0123456789.$"); | |
e0001a05 NC |
1501 | |
1502 | /* Get a null-terminated copy of the name. */ | |
1503 | name = xmalloc (len + 1); | |
9c2799c2 | 1504 | gas_assert (name); |
74869ac7 | 1505 | strncpy (name, input_line_pointer, len); |
e0001a05 NC |
1506 | name[len] = 0; |
1507 | ||
74869ac7 BW |
1508 | /* Skip the name in the input line. */ |
1509 | input_line_pointer += len; | |
43cd72b9 | 1510 | |
74869ac7 | 1511 | default_lit_sections.lit_prefix = name; |
43cd72b9 | 1512 | |
74869ac7 | 1513 | /* Clear cached literal sections, since the prefix has changed. */ |
43cd72b9 BW |
1514 | default_lit_sections.lit_seg = NULL; |
1515 | default_lit_sections.lit4_seg = NULL; | |
43cd72b9 BW |
1516 | } |
1517 | ||
1518 | ||
1519 | /* Support ".frequency branch_target_frequency fall_through_frequency". */ | |
1520 | ||
1521 | static void | |
7fa3d080 | 1522 | xtensa_frequency_pseudo (int ignored ATTRIBUTE_UNUSED) |
43cd72b9 BW |
1523 | { |
1524 | float fall_through_f, target_f; | |
43cd72b9 BW |
1525 | |
1526 | fall_through_f = (float) strtod (input_line_pointer, &input_line_pointer); | |
1527 | if (fall_through_f < 0) | |
1528 | { | |
1529 | as_bad (_("fall through frequency must be greater than 0")); | |
1530 | ignore_rest_of_line (); | |
1531 | return; | |
1532 | } | |
1533 | ||
1534 | target_f = (float) strtod (input_line_pointer, &input_line_pointer); | |
1535 | if (target_f < 0) | |
1536 | { | |
1537 | as_bad (_("branch target frequency must be greater than 0")); | |
1538 | ignore_rest_of_line (); | |
1539 | return; | |
1540 | } | |
1541 | ||
b08b5071 | 1542 | set_subseg_freq (now_seg, now_subseg, target_f + fall_through_f, target_f); |
43cd72b9 BW |
1543 | |
1544 | demand_empty_rest_of_line (); | |
1545 | } | |
1546 | ||
1547 | ||
1548 | /* Like normal .long/.short/.word, except support @plt, etc. | |
1549 | Clobbers input_line_pointer, checks end-of-line. */ | |
1550 | ||
1551 | static void | |
7fa3d080 | 1552 | xtensa_elf_cons (int nbytes) |
43cd72b9 BW |
1553 | { |
1554 | expressionS exp; | |
1555 | bfd_reloc_code_real_type reloc; | |
1556 | ||
1557 | md_flush_pending_output (); | |
1558 | ||
1559 | if (cur_vinsn.inside_bundle) | |
1560 | as_bad (_("directives are not valid inside bundles")); | |
1561 | ||
1562 | if (is_it_end_of_statement ()) | |
1563 | { | |
1564 | demand_empty_rest_of_line (); | |
1565 | return; | |
1566 | } | |
1567 | ||
1568 | do | |
1569 | { | |
1570 | expression (&exp); | |
1571 | if (exp.X_op == O_symbol | |
1572 | && *input_line_pointer == '@' | |
1573 | && ((reloc = xtensa_elf_suffix (&input_line_pointer, &exp)) | |
1574 | != BFD_RELOC_NONE)) | |
1575 | { | |
1576 | reloc_howto_type *reloc_howto = | |
1577 | bfd_reloc_type_lookup (stdoutput, reloc); | |
1578 | ||
1579 | if (reloc == BFD_RELOC_UNUSED || !reloc_howto) | |
1580 | as_bad (_("unsupported relocation")); | |
1581 | else if ((reloc >= BFD_RELOC_XTENSA_SLOT0_OP | |
1582 | && reloc <= BFD_RELOC_XTENSA_SLOT14_OP) | |
1583 | || (reloc >= BFD_RELOC_XTENSA_SLOT0_ALT | |
1584 | && reloc <= BFD_RELOC_XTENSA_SLOT14_ALT)) | |
1585 | as_bad (_("opcode-specific %s relocation used outside " | |
1586 | "an instruction"), reloc_howto->name); | |
1587 | else if (nbytes != (int) bfd_get_reloc_size (reloc_howto)) | |
1588 | as_bad (_("%s relocations do not fit in %d bytes"), | |
1589 | reloc_howto->name, nbytes); | |
28dbbc02 BW |
1590 | else if (reloc == BFD_RELOC_XTENSA_TLS_FUNC |
1591 | || reloc == BFD_RELOC_XTENSA_TLS_ARG | |
1592 | || reloc == BFD_RELOC_XTENSA_TLS_CALL) | |
1593 | as_bad (_("invalid use of %s relocation"), reloc_howto->name); | |
43cd72b9 BW |
1594 | else |
1595 | { | |
1596 | char *p = frag_more ((int) nbytes); | |
1597 | xtensa_set_frag_assembly_state (frag_now); | |
1598 | fix_new_exp (frag_now, p - frag_now->fr_literal, | |
1bbb5f21 | 1599 | nbytes, &exp, reloc_howto->pc_relative, reloc); |
43cd72b9 BW |
1600 | } |
1601 | } | |
1602 | else | |
1f7efbae BW |
1603 | { |
1604 | xtensa_set_frag_assembly_state (frag_now); | |
1605 | emit_expr (&exp, (unsigned int) nbytes); | |
1606 | } | |
43cd72b9 BW |
1607 | } |
1608 | while (*input_line_pointer++ == ','); | |
1609 | ||
1610 | input_line_pointer--; /* Put terminator back into stream. */ | |
1611 | demand_empty_rest_of_line (); | |
1612 | } | |
1613 | ||
fb227da0 BW |
1614 | static bfd_boolean is_leb128_expr; |
1615 | ||
1616 | static void | |
1617 | xtensa_leb128 (int sign) | |
1618 | { | |
1619 | is_leb128_expr = TRUE; | |
1620 | s_leb128 (sign); | |
1621 | is_leb128_expr = FALSE; | |
1622 | } | |
1623 | ||
7fa3d080 BW |
1624 | \f |
1625 | /* Parsing and Idiom Translation. */ | |
43cd72b9 BW |
1626 | |
1627 | /* Parse @plt, etc. and return the desired relocation. */ | |
1628 | static bfd_reloc_code_real_type | |
7fa3d080 | 1629 | xtensa_elf_suffix (char **str_p, expressionS *exp_p) |
43cd72b9 | 1630 | { |
43cd72b9 BW |
1631 | char ident[20]; |
1632 | char *str = *str_p; | |
1633 | char *str2; | |
1634 | int ch; | |
1635 | int len; | |
bbdd25a8 | 1636 | struct suffix_reloc_map *ptr; |
43cd72b9 BW |
1637 | |
1638 | if (*str++ != '@') | |
1639 | return BFD_RELOC_NONE; | |
1640 | ||
1641 | for (ch = *str, str2 = ident; | |
1642 | (str2 < ident + sizeof (ident) - 1 | |
1643 | && (ISALNUM (ch) || ch == '@')); | |
1644 | ch = *++str) | |
1645 | { | |
1646 | *str2++ = (ISLOWER (ch)) ? ch : TOLOWER (ch); | |
1647 | } | |
1648 | ||
1649 | *str2 = '\0'; | |
1650 | len = str2 - ident; | |
1651 | ||
1652 | ch = ident[0]; | |
bbdd25a8 BW |
1653 | for (ptr = &suffix_relocs[0]; ptr->length > 0; ptr++) |
1654 | if (ch == ptr->suffix[0] | |
43cd72b9 | 1655 | && len == ptr->length |
bbdd25a8 | 1656 | && memcmp (ident, ptr->suffix, ptr->length) == 0) |
43cd72b9 BW |
1657 | { |
1658 | /* Now check for "identifier@suffix+constant". */ | |
1659 | if (*str == '-' || *str == '+') | |
1660 | { | |
1661 | char *orig_line = input_line_pointer; | |
1662 | expressionS new_exp; | |
1663 | ||
1664 | input_line_pointer = str; | |
1665 | expression (&new_exp); | |
1666 | if (new_exp.X_op == O_constant) | |
1667 | { | |
1668 | exp_p->X_add_number += new_exp.X_add_number; | |
1669 | str = input_line_pointer; | |
1670 | } | |
1671 | ||
1672 | if (&input_line_pointer != str_p) | |
1673 | input_line_pointer = orig_line; | |
1674 | } | |
1675 | ||
1676 | *str_p = str; | |
1677 | return ptr->reloc; | |
1678 | } | |
1679 | ||
1680 | return BFD_RELOC_UNUSED; | |
e0001a05 NC |
1681 | } |
1682 | ||
e0001a05 | 1683 | |
bbdd25a8 BW |
1684 | /* Find the matching operator type. */ |
1685 | static unsigned char | |
1686 | map_suffix_reloc_to_operator (bfd_reloc_code_real_type reloc) | |
1687 | { | |
1688 | struct suffix_reloc_map *sfx; | |
1689 | unsigned char operator = (unsigned char) -1; | |
1690 | ||
1691 | for (sfx = &suffix_relocs[0]; sfx->suffix; sfx++) | |
1692 | { | |
1693 | if (sfx->reloc == reloc) | |
1694 | { | |
1695 | operator = sfx->operator; | |
1696 | break; | |
1697 | } | |
1698 | } | |
9c2799c2 | 1699 | gas_assert (operator != (unsigned char) -1); |
bbdd25a8 BW |
1700 | return operator; |
1701 | } | |
1702 | ||
1703 | ||
1704 | /* Find the matching reloc type. */ | |
1705 | static bfd_reloc_code_real_type | |
28dbbc02 | 1706 | map_operator_to_reloc (unsigned char operator, bfd_boolean is_literal) |
bbdd25a8 BW |
1707 | { |
1708 | struct suffix_reloc_map *sfx; | |
1709 | bfd_reloc_code_real_type reloc = BFD_RELOC_UNUSED; | |
1710 | ||
1711 | for (sfx = &suffix_relocs[0]; sfx->suffix; sfx++) | |
1712 | { | |
1713 | if (sfx->operator == operator) | |
1714 | { | |
1715 | reloc = sfx->reloc; | |
1716 | break; | |
1717 | } | |
1718 | } | |
1719 | ||
28dbbc02 BW |
1720 | if (is_literal) |
1721 | { | |
1722 | if (reloc == BFD_RELOC_XTENSA_TLS_FUNC) | |
1723 | return BFD_RELOC_XTENSA_TLSDESC_FN; | |
1724 | else if (reloc == BFD_RELOC_XTENSA_TLS_ARG) | |
1725 | return BFD_RELOC_XTENSA_TLSDESC_ARG; | |
1726 | } | |
1727 | ||
bbdd25a8 BW |
1728 | if (reloc == BFD_RELOC_UNUSED) |
1729 | return BFD_RELOC_32; | |
1730 | ||
1731 | return reloc; | |
1732 | } | |
1733 | ||
1734 | ||
e0001a05 | 1735 | static const char * |
7fa3d080 | 1736 | expression_end (const char *name) |
e0001a05 NC |
1737 | { |
1738 | while (1) | |
1739 | { | |
1740 | switch (*name) | |
1741 | { | |
43cd72b9 | 1742 | case '}': |
e0001a05 NC |
1743 | case ';': |
1744 | case '\0': | |
1745 | case ',': | |
43cd72b9 | 1746 | case ':': |
e0001a05 NC |
1747 | return name; |
1748 | case ' ': | |
1749 | case '\t': | |
1750 | ++name; | |
1751 | continue; | |
1752 | default: | |
1753 | return 0; | |
1754 | } | |
1755 | } | |
1756 | } | |
1757 | ||
1758 | ||
1759 | #define ERROR_REG_NUM ((unsigned) -1) | |
1760 | ||
1761 | static unsigned | |
7fa3d080 | 1762 | tc_get_register (const char *prefix) |
e0001a05 NC |
1763 | { |
1764 | unsigned reg; | |
1765 | const char *next_expr; | |
1766 | const char *old_line_pointer; | |
1767 | ||
1768 | SKIP_WHITESPACE (); | |
1769 | old_line_pointer = input_line_pointer; | |
1770 | ||
1771 | if (*input_line_pointer == '$') | |
1772 | ++input_line_pointer; | |
1773 | ||
1774 | /* Accept "sp" as a synonym for "a1". */ | |
1775 | if (input_line_pointer[0] == 's' && input_line_pointer[1] == 'p' | |
1776 | && expression_end (input_line_pointer + 2)) | |
1777 | { | |
1778 | input_line_pointer += 2; | |
1779 | return 1; /* AR[1] */ | |
1780 | } | |
1781 | ||
1782 | while (*input_line_pointer++ == *prefix++) | |
1783 | ; | |
1784 | --input_line_pointer; | |
1785 | --prefix; | |
1786 | ||
1787 | if (*prefix) | |
1788 | { | |
1789 | as_bad (_("bad register name: %s"), old_line_pointer); | |
1790 | return ERROR_REG_NUM; | |
1791 | } | |
1792 | ||
1793 | if (!ISDIGIT ((unsigned char) *input_line_pointer)) | |
1794 | { | |
1795 | as_bad (_("bad register number: %s"), input_line_pointer); | |
1796 | return ERROR_REG_NUM; | |
1797 | } | |
1798 | ||
1799 | reg = 0; | |
1800 | ||
1801 | while (ISDIGIT ((int) *input_line_pointer)) | |
1802 | reg = reg * 10 + *input_line_pointer++ - '0'; | |
1803 | ||
1804 | if (!(next_expr = expression_end (input_line_pointer))) | |
1805 | { | |
1806 | as_bad (_("bad register name: %s"), old_line_pointer); | |
1807 | return ERROR_REG_NUM; | |
1808 | } | |
1809 | ||
1810 | input_line_pointer = (char *) next_expr; | |
1811 | ||
1812 | return reg; | |
1813 | } | |
1814 | ||
1815 | ||
e0001a05 | 1816 | static void |
7fa3d080 | 1817 | expression_maybe_register (xtensa_opcode opc, int opnd, expressionS *tok) |
e0001a05 | 1818 | { |
43cd72b9 | 1819 | xtensa_isa isa = xtensa_default_isa; |
e0001a05 | 1820 | |
43cd72b9 BW |
1821 | /* Check if this is an immediate operand. */ |
1822 | if (xtensa_operand_is_register (isa, opc, opnd) == 0) | |
e0001a05 | 1823 | { |
43cd72b9 | 1824 | bfd_reloc_code_real_type reloc; |
e0001a05 | 1825 | segT t = expression (tok); |
91d6fa6a | 1826 | |
43cd72b9 BW |
1827 | if (t == absolute_section |
1828 | && xtensa_operand_is_PCrelative (isa, opc, opnd) == 1) | |
e0001a05 | 1829 | { |
9c2799c2 | 1830 | gas_assert (tok->X_op == O_constant); |
e0001a05 NC |
1831 | tok->X_op = O_symbol; |
1832 | tok->X_add_symbol = &abs_symbol; | |
1833 | } | |
43cd72b9 BW |
1834 | |
1835 | if ((tok->X_op == O_constant || tok->X_op == O_symbol) | |
bbdd25a8 BW |
1836 | && ((reloc = xtensa_elf_suffix (&input_line_pointer, tok)) |
1837 | != BFD_RELOC_NONE)) | |
e0001a05 | 1838 | { |
1bbb5f21 | 1839 | switch (reloc) |
43cd72b9 | 1840 | { |
1bbb5f21 BW |
1841 | case BFD_RELOC_LO16: |
1842 | if (tok->X_op == O_constant) | |
bbdd25a8 | 1843 | { |
43cd72b9 | 1844 | tok->X_add_number &= 0xffff; |
bbdd25a8 | 1845 | return; |
1bbb5f21 BW |
1846 | } |
1847 | break; | |
1848 | case BFD_RELOC_HI16: | |
1849 | if (tok->X_op == O_constant) | |
1850 | { | |
43cd72b9 | 1851 | tok->X_add_number = ((unsigned) tok->X_add_number) >> 16; |
bbdd25a8 | 1852 | return; |
bbdd25a8 | 1853 | } |
1bbb5f21 BW |
1854 | break; |
1855 | case BFD_RELOC_UNUSED: | |
1856 | as_bad (_("unsupported relocation")); | |
1857 | return; | |
1858 | case BFD_RELOC_32_PCREL: | |
1859 | as_bad (_("pcrel relocation not allowed in an instruction")); | |
1860 | return; | |
1861 | default: | |
1862 | break; | |
43cd72b9 | 1863 | } |
bbdd25a8 | 1864 | tok->X_op = map_suffix_reloc_to_operator (reloc); |
e0001a05 | 1865 | } |
e0001a05 NC |
1866 | } |
1867 | else | |
1868 | { | |
43cd72b9 BW |
1869 | xtensa_regfile opnd_rf = xtensa_operand_regfile (isa, opc, opnd); |
1870 | unsigned reg = tc_get_register (xtensa_regfile_shortname (isa, opnd_rf)); | |
e0001a05 NC |
1871 | |
1872 | if (reg != ERROR_REG_NUM) /* Already errored */ | |
1873 | { | |
1874 | uint32 buf = reg; | |
43cd72b9 | 1875 | if (xtensa_operand_encode (isa, opc, opnd, &buf)) |
e0001a05 NC |
1876 | as_bad (_("register number out of range")); |
1877 | } | |
1878 | ||
1879 | tok->X_op = O_register; | |
1880 | tok->X_add_symbol = 0; | |
1881 | tok->X_add_number = reg; | |
1882 | } | |
1883 | } | |
1884 | ||
1885 | ||
1886 | /* Split up the arguments for an opcode or pseudo-op. */ | |
1887 | ||
1888 | static int | |
7fa3d080 | 1889 | tokenize_arguments (char **args, char *str) |
e0001a05 NC |
1890 | { |
1891 | char *old_input_line_pointer; | |
1892 | bfd_boolean saw_comma = FALSE; | |
1893 | bfd_boolean saw_arg = FALSE; | |
43cd72b9 | 1894 | bfd_boolean saw_colon = FALSE; |
e0001a05 NC |
1895 | int num_args = 0; |
1896 | char *arg_end, *arg; | |
1897 | int arg_len; | |
43cd72b9 BW |
1898 | |
1899 | /* Save and restore input_line_pointer around this function. */ | |
e0001a05 NC |
1900 | old_input_line_pointer = input_line_pointer; |
1901 | input_line_pointer = str; | |
1902 | ||
1903 | while (*input_line_pointer) | |
1904 | { | |
1905 | SKIP_WHITESPACE (); | |
1906 | switch (*input_line_pointer) | |
1907 | { | |
1908 | case '\0': | |
43cd72b9 | 1909 | case '}': |
e0001a05 NC |
1910 | goto fini; |
1911 | ||
43cd72b9 BW |
1912 | case ':': |
1913 | input_line_pointer++; | |
1914 | if (saw_comma || saw_colon || !saw_arg) | |
1915 | goto err; | |
1916 | saw_colon = TRUE; | |
1917 | break; | |
1918 | ||
e0001a05 NC |
1919 | case ',': |
1920 | input_line_pointer++; | |
43cd72b9 | 1921 | if (saw_comma || saw_colon || !saw_arg) |
e0001a05 NC |
1922 | goto err; |
1923 | saw_comma = TRUE; | |
1924 | break; | |
1925 | ||
1926 | default: | |
43cd72b9 | 1927 | if (!saw_comma && !saw_colon && saw_arg) |
e0001a05 NC |
1928 | goto err; |
1929 | ||
1930 | arg_end = input_line_pointer + 1; | |
1931 | while (!expression_end (arg_end)) | |
1932 | arg_end += 1; | |
43cd72b9 | 1933 | |
e0001a05 | 1934 | arg_len = arg_end - input_line_pointer; |
43cd72b9 | 1935 | arg = (char *) xmalloc ((saw_colon ? 1 : 0) + arg_len + 1); |
e0001a05 NC |
1936 | args[num_args] = arg; |
1937 | ||
43cd72b9 BW |
1938 | if (saw_colon) |
1939 | *arg++ = ':'; | |
e0001a05 NC |
1940 | strncpy (arg, input_line_pointer, arg_len); |
1941 | arg[arg_len] = '\0'; | |
43cd72b9 | 1942 | |
e0001a05 NC |
1943 | input_line_pointer = arg_end; |
1944 | num_args += 1; | |
c138bc38 | 1945 | saw_comma = FALSE; |
43cd72b9 | 1946 | saw_colon = FALSE; |
c138bc38 | 1947 | saw_arg = TRUE; |
e0001a05 NC |
1948 | break; |
1949 | } | |
1950 | } | |
1951 | ||
1952 | fini: | |
43cd72b9 | 1953 | if (saw_comma || saw_colon) |
e0001a05 NC |
1954 | goto err; |
1955 | input_line_pointer = old_input_line_pointer; | |
1956 | return num_args; | |
1957 | ||
1958 | err: | |
43cd72b9 BW |
1959 | if (saw_comma) |
1960 | as_bad (_("extra comma")); | |
1961 | else if (saw_colon) | |
1962 | as_bad (_("extra colon")); | |
1963 | else if (!saw_arg) | |
c138bc38 | 1964 | as_bad (_("missing argument")); |
43cd72b9 BW |
1965 | else |
1966 | as_bad (_("missing comma or colon")); | |
e0001a05 NC |
1967 | input_line_pointer = old_input_line_pointer; |
1968 | return -1; | |
1969 | } | |
1970 | ||
1971 | ||
43cd72b9 | 1972 | /* Parse the arguments to an opcode. Return TRUE on error. */ |
e0001a05 NC |
1973 | |
1974 | static bfd_boolean | |
7fa3d080 | 1975 | parse_arguments (TInsn *insn, int num_args, char **arg_strings) |
e0001a05 | 1976 | { |
43cd72b9 | 1977 | expressionS *tok, *last_tok; |
e0001a05 NC |
1978 | xtensa_opcode opcode = insn->opcode; |
1979 | bfd_boolean had_error = TRUE; | |
43cd72b9 BW |
1980 | xtensa_isa isa = xtensa_default_isa; |
1981 | int n, num_regs = 0; | |
e0001a05 | 1982 | int opcode_operand_count; |
43cd72b9 BW |
1983 | int opnd_cnt, last_opnd_cnt; |
1984 | unsigned int next_reg = 0; | |
e0001a05 NC |
1985 | char *old_input_line_pointer; |
1986 | ||
1987 | if (insn->insn_type == ITYPE_LITERAL) | |
1988 | opcode_operand_count = 1; | |
1989 | else | |
43cd72b9 | 1990 | opcode_operand_count = xtensa_opcode_num_operands (isa, opcode); |
e0001a05 | 1991 | |
43cd72b9 | 1992 | tok = insn->tok; |
e0001a05 NC |
1993 | memset (tok, 0, sizeof (*tok) * MAX_INSN_ARGS); |
1994 | ||
1995 | /* Save and restore input_line_pointer around this function. */ | |
43cd72b9 BW |
1996 | old_input_line_pointer = input_line_pointer; |
1997 | ||
1998 | last_tok = 0; | |
1999 | last_opnd_cnt = -1; | |
2000 | opnd_cnt = 0; | |
2001 | ||
2002 | /* Skip invisible operands. */ | |
2003 | while (xtensa_operand_is_visible (isa, opcode, opnd_cnt) == 0) | |
2004 | { | |
2005 | opnd_cnt += 1; | |
2006 | tok++; | |
2007 | } | |
e0001a05 NC |
2008 | |
2009 | for (n = 0; n < num_args; n++) | |
43cd72b9 | 2010 | { |
e0001a05 | 2011 | input_line_pointer = arg_strings[n]; |
43cd72b9 BW |
2012 | if (*input_line_pointer == ':') |
2013 | { | |
2014 | xtensa_regfile opnd_rf; | |
2015 | input_line_pointer++; | |
2016 | if (num_regs == 0) | |
2017 | goto err; | |
9c2799c2 | 2018 | gas_assert (opnd_cnt > 0); |
43cd72b9 BW |
2019 | num_regs--; |
2020 | opnd_rf = xtensa_operand_regfile (isa, opcode, last_opnd_cnt); | |
2021 | if (next_reg | |
2022 | != tc_get_register (xtensa_regfile_shortname (isa, opnd_rf))) | |
2023 | as_warn (_("incorrect register number, ignoring")); | |
2024 | next_reg++; | |
2025 | } | |
2026 | else | |
2027 | { | |
2028 | if (opnd_cnt >= opcode_operand_count) | |
2029 | { | |
2030 | as_warn (_("too many arguments")); | |
2031 | goto err; | |
2032 | } | |
9c2799c2 | 2033 | gas_assert (opnd_cnt < MAX_INSN_ARGS); |
43cd72b9 BW |
2034 | |
2035 | expression_maybe_register (opcode, opnd_cnt, tok); | |
2036 | next_reg = tok->X_add_number + 1; | |
2037 | ||
2038 | if (tok->X_op == O_illegal || tok->X_op == O_absent) | |
2039 | goto err; | |
2040 | if (xtensa_operand_is_register (isa, opcode, opnd_cnt) == 1) | |
2041 | { | |
2042 | num_regs = xtensa_operand_num_regs (isa, opcode, opnd_cnt) - 1; | |
2043 | /* minus 1 because we are seeing one right now */ | |
2044 | } | |
2045 | else | |
2046 | num_regs = 0; | |
e0001a05 | 2047 | |
43cd72b9 BW |
2048 | last_tok = tok; |
2049 | last_opnd_cnt = opnd_cnt; | |
1ec520b7 | 2050 | demand_empty_rest_of_line (); |
e0001a05 | 2051 | |
43cd72b9 BW |
2052 | do |
2053 | { | |
2054 | opnd_cnt += 1; | |
2055 | tok++; | |
2056 | } | |
2057 | while (xtensa_operand_is_visible (isa, opcode, opnd_cnt) == 0); | |
2058 | } | |
2059 | } | |
e0001a05 | 2060 | |
43cd72b9 BW |
2061 | if (num_regs > 0 && ((int) next_reg != last_tok->X_add_number + 1)) |
2062 | goto err; | |
e0001a05 NC |
2063 | |
2064 | insn->ntok = tok - insn->tok; | |
c138bc38 | 2065 | had_error = FALSE; |
e0001a05 NC |
2066 | |
2067 | err: | |
43cd72b9 | 2068 | input_line_pointer = old_input_line_pointer; |
e0001a05 NC |
2069 | return had_error; |
2070 | } | |
2071 | ||
2072 | ||
43cd72b9 | 2073 | static int |
7fa3d080 | 2074 | get_invisible_operands (TInsn *insn) |
43cd72b9 BW |
2075 | { |
2076 | xtensa_isa isa = xtensa_default_isa; | |
2077 | static xtensa_insnbuf slotbuf = NULL; | |
2078 | xtensa_format fmt; | |
2079 | xtensa_opcode opc = insn->opcode; | |
2080 | int slot, opnd, fmt_found; | |
2081 | unsigned val; | |
2082 | ||
2083 | if (!slotbuf) | |
2084 | slotbuf = xtensa_insnbuf_alloc (isa); | |
2085 | ||
2086 | /* Find format/slot where this can be encoded. */ | |
2087 | fmt_found = 0; | |
2088 | slot = 0; | |
2089 | for (fmt = 0; fmt < xtensa_isa_num_formats (isa); fmt++) | |
2090 | { | |
2091 | for (slot = 0; slot < xtensa_format_num_slots (isa, fmt); slot++) | |
2092 | { | |
2093 | if (xtensa_opcode_encode (isa, fmt, slot, slotbuf, opc) == 0) | |
2094 | { | |
2095 | fmt_found = 1; | |
2096 | break; | |
2097 | } | |
2098 | } | |
2099 | if (fmt_found) break; | |
2100 | } | |
2101 | ||
2102 | if (!fmt_found) | |
2103 | { | |
2104 | as_bad (_("cannot encode opcode \"%s\""), xtensa_opcode_name (isa, opc)); | |
2105 | return -1; | |
2106 | } | |
2107 | ||
2108 | /* First encode all the visible operands | |
2109 | (to deal with shared field operands). */ | |
2110 | for (opnd = 0; opnd < insn->ntok; opnd++) | |
2111 | { | |
2112 | if (xtensa_operand_is_visible (isa, opc, opnd) == 1 | |
2113 | && (insn->tok[opnd].X_op == O_register | |
2114 | || insn->tok[opnd].X_op == O_constant)) | |
2115 | { | |
2116 | val = insn->tok[opnd].X_add_number; | |
2117 | xtensa_operand_encode (isa, opc, opnd, &val); | |
2118 | xtensa_operand_set_field (isa, opc, opnd, fmt, slot, slotbuf, val); | |
2119 | } | |
2120 | } | |
2121 | ||
2122 | /* Then pull out the values for the invisible ones. */ | |
2123 | for (opnd = 0; opnd < insn->ntok; opnd++) | |
2124 | { | |
2125 | if (xtensa_operand_is_visible (isa, opc, opnd) == 0) | |
2126 | { | |
2127 | xtensa_operand_get_field (isa, opc, opnd, fmt, slot, slotbuf, &val); | |
2128 | xtensa_operand_decode (isa, opc, opnd, &val); | |
2129 | insn->tok[opnd].X_add_number = val; | |
2130 | if (xtensa_operand_is_register (isa, opc, opnd) == 1) | |
2131 | insn->tok[opnd].X_op = O_register; | |
2132 | else | |
2133 | insn->tok[opnd].X_op = O_constant; | |
2134 | } | |
2135 | } | |
2136 | ||
2137 | return 0; | |
2138 | } | |
2139 | ||
2140 | ||
e0001a05 | 2141 | static void |
7fa3d080 | 2142 | xg_reverse_shift_count (char **cnt_argp) |
e0001a05 NC |
2143 | { |
2144 | char *cnt_arg, *new_arg; | |
2145 | cnt_arg = *cnt_argp; | |
2146 | ||
2147 | /* replace the argument with "31-(argument)" */ | |
2148 | new_arg = (char *) xmalloc (strlen (cnt_arg) + 6); | |
2149 | sprintf (new_arg, "31-(%s)", cnt_arg); | |
2150 | ||
2151 | free (cnt_arg); | |
2152 | *cnt_argp = new_arg; | |
2153 | } | |
2154 | ||
2155 | ||
2156 | /* If "arg" is a constant expression, return non-zero with the value | |
2157 | in *valp. */ | |
2158 | ||
2159 | static int | |
7fa3d080 | 2160 | xg_arg_is_constant (char *arg, offsetT *valp) |
e0001a05 NC |
2161 | { |
2162 | expressionS exp; | |
2163 | char *save_ptr = input_line_pointer; | |
2164 | ||
2165 | input_line_pointer = arg; | |
2166 | expression (&exp); | |
2167 | input_line_pointer = save_ptr; | |
2168 | ||
2169 | if (exp.X_op == O_constant) | |
2170 | { | |
2171 | *valp = exp.X_add_number; | |
2172 | return 1; | |
2173 | } | |
2174 | ||
2175 | return 0; | |
2176 | } | |
2177 | ||
2178 | ||
2179 | static void | |
7fa3d080 | 2180 | xg_replace_opname (char **popname, char *newop) |
e0001a05 NC |
2181 | { |
2182 | free (*popname); | |
2183 | *popname = (char *) xmalloc (strlen (newop) + 1); | |
2184 | strcpy (*popname, newop); | |
2185 | } | |
2186 | ||
2187 | ||
2188 | static int | |
7fa3d080 BW |
2189 | xg_check_num_args (int *pnum_args, |
2190 | int expected_num, | |
2191 | char *opname, | |
2192 | char **arg_strings) | |
e0001a05 NC |
2193 | { |
2194 | int num_args = *pnum_args; | |
2195 | ||
43cd72b9 | 2196 | if (num_args < expected_num) |
e0001a05 NC |
2197 | { |
2198 | as_bad (_("not enough operands (%d) for '%s'; expected %d"), | |
2199 | num_args, opname, expected_num); | |
2200 | return -1; | |
2201 | } | |
2202 | ||
2203 | if (num_args > expected_num) | |
2204 | { | |
2205 | as_warn (_("too many operands (%d) for '%s'; expected %d"), | |
2206 | num_args, opname, expected_num); | |
2207 | while (num_args-- > expected_num) | |
2208 | { | |
2209 | free (arg_strings[num_args]); | |
2210 | arg_strings[num_args] = 0; | |
2211 | } | |
2212 | *pnum_args = expected_num; | |
2213 | return -1; | |
2214 | } | |
2215 | ||
2216 | return 0; | |
2217 | } | |
2218 | ||
2219 | ||
43cd72b9 BW |
2220 | /* If the register is not specified as part of the opcode, |
2221 | then get it from the operand and move it to the opcode. */ | |
2222 | ||
e0001a05 | 2223 | static int |
7fa3d080 | 2224 | xg_translate_sysreg_op (char **popname, int *pnum_args, char **arg_strings) |
e0001a05 | 2225 | { |
43cd72b9 BW |
2226 | xtensa_isa isa = xtensa_default_isa; |
2227 | xtensa_sysreg sr; | |
e0001a05 | 2228 | char *opname, *new_opname; |
43cd72b9 BW |
2229 | const char *sr_name; |
2230 | int is_user, is_write; | |
e0001a05 NC |
2231 | |
2232 | opname = *popname; | |
2233 | if (*opname == '_') | |
80ca4e2c | 2234 | opname += 1; |
43cd72b9 BW |
2235 | is_user = (opname[1] == 'u'); |
2236 | is_write = (opname[0] == 'w'); | |
e0001a05 | 2237 | |
43cd72b9 | 2238 | /* Opname == [rw]ur or [rwx]sr... */ |
e0001a05 | 2239 | |
43cd72b9 BW |
2240 | if (xg_check_num_args (pnum_args, 2, opname, arg_strings)) |
2241 | return -1; | |
e0001a05 | 2242 | |
43cd72b9 BW |
2243 | /* Check if the argument is a symbolic register name. */ |
2244 | sr = xtensa_sysreg_lookup_name (isa, arg_strings[1]); | |
2245 | /* Handle WSR to "INTSET" as a special case. */ | |
2246 | if (sr == XTENSA_UNDEFINED && is_write && !is_user | |
2247 | && !strcasecmp (arg_strings[1], "intset")) | |
2248 | sr = xtensa_sysreg_lookup_name (isa, "interrupt"); | |
2249 | if (sr == XTENSA_UNDEFINED | |
2250 | || (xtensa_sysreg_is_user (isa, sr) == 1) != is_user) | |
2251 | { | |
2252 | /* Maybe it's a register number.... */ | |
2253 | offsetT val; | |
e0001a05 NC |
2254 | if (!xg_arg_is_constant (arg_strings[1], &val)) |
2255 | { | |
43cd72b9 BW |
2256 | as_bad (_("invalid register '%s' for '%s' instruction"), |
2257 | arg_strings[1], opname); | |
e0001a05 NC |
2258 | return -1; |
2259 | } | |
43cd72b9 BW |
2260 | sr = xtensa_sysreg_lookup (isa, val, is_user); |
2261 | if (sr == XTENSA_UNDEFINED) | |
e0001a05 | 2262 | { |
43cd72b9 | 2263 | as_bad (_("invalid register number (%ld) for '%s' instruction"), |
dd49a749 | 2264 | (long) val, opname); |
e0001a05 NC |
2265 | return -1; |
2266 | } | |
43cd72b9 | 2267 | } |
e0001a05 | 2268 | |
43cd72b9 BW |
2269 | /* Remove the last argument, which is now part of the opcode. */ |
2270 | free (arg_strings[1]); | |
2271 | arg_strings[1] = 0; | |
2272 | *pnum_args = 1; | |
2273 | ||
2274 | /* Translate the opcode. */ | |
2275 | sr_name = xtensa_sysreg_name (isa, sr); | |
2276 | /* Another special case for "WSR.INTSET".... */ | |
2277 | if (is_write && !is_user && !strcasecmp ("interrupt", sr_name)) | |
2278 | sr_name = "intset"; | |
2279 | new_opname = (char *) xmalloc (strlen (sr_name) + 6); | |
80ca4e2c | 2280 | sprintf (new_opname, "%s.%s", *popname, sr_name); |
43cd72b9 BW |
2281 | free (*popname); |
2282 | *popname = new_opname; | |
2283 | ||
2284 | return 0; | |
2285 | } | |
2286 | ||
2287 | ||
2288 | static int | |
7fa3d080 | 2289 | xtensa_translate_old_userreg_ops (char **popname) |
43cd72b9 BW |
2290 | { |
2291 | xtensa_isa isa = xtensa_default_isa; | |
2292 | xtensa_sysreg sr; | |
2293 | char *opname, *new_opname; | |
2294 | const char *sr_name; | |
2295 | bfd_boolean has_underbar = FALSE; | |
2296 | ||
2297 | opname = *popname; | |
2298 | if (opname[0] == '_') | |
2299 | { | |
2300 | has_underbar = TRUE; | |
2301 | opname += 1; | |
2302 | } | |
2303 | ||
2304 | sr = xtensa_sysreg_lookup_name (isa, opname + 1); | |
2305 | if (sr != XTENSA_UNDEFINED) | |
2306 | { | |
2307 | /* The new default name ("nnn") is different from the old default | |
2308 | name ("URnnn"). The old default is handled below, and we don't | |
2309 | want to recognize [RW]nnn, so do nothing if the name is the (new) | |
2310 | default. */ | |
2311 | static char namebuf[10]; | |
2312 | sprintf (namebuf, "%d", xtensa_sysreg_number (isa, sr)); | |
2313 | if (strcmp (namebuf, opname + 1) == 0) | |
2314 | return 0; | |
2315 | } | |
2316 | else | |
2317 | { | |
2318 | offsetT val; | |
2319 | char *end; | |
2320 | ||
2321 | /* Only continue if the reg name is "URnnn". */ | |
2322 | if (opname[1] != 'u' || opname[2] != 'r') | |
2323 | return 0; | |
2324 | val = strtoul (opname + 3, &end, 10); | |
2325 | if (*end != '\0') | |
2326 | return 0; | |
2327 | ||
2328 | sr = xtensa_sysreg_lookup (isa, val, 1); | |
2329 | if (sr == XTENSA_UNDEFINED) | |
2330 | { | |
2331 | as_bad (_("invalid register number (%ld) for '%s'"), | |
dd49a749 | 2332 | (long) val, opname); |
43cd72b9 BW |
2333 | return -1; |
2334 | } | |
2335 | } | |
2336 | ||
2337 | /* Translate the opcode. */ | |
2338 | sr_name = xtensa_sysreg_name (isa, sr); | |
2339 | new_opname = (char *) xmalloc (strlen (sr_name) + 6); | |
2340 | sprintf (new_opname, "%s%cur.%s", (has_underbar ? "_" : ""), | |
2341 | opname[0], sr_name); | |
2342 | free (*popname); | |
2343 | *popname = new_opname; | |
2344 | ||
2345 | return 0; | |
2346 | } | |
2347 | ||
2348 | ||
2349 | static int | |
7fa3d080 BW |
2350 | xtensa_translate_zero_immed (char *old_op, |
2351 | char *new_op, | |
2352 | char **popname, | |
2353 | int *pnum_args, | |
2354 | char **arg_strings) | |
43cd72b9 BW |
2355 | { |
2356 | char *opname; | |
2357 | offsetT val; | |
2358 | ||
2359 | opname = *popname; | |
9c2799c2 | 2360 | gas_assert (opname[0] != '_'); |
43cd72b9 BW |
2361 | |
2362 | if (strcmp (opname, old_op) != 0) | |
2363 | return 0; | |
e0001a05 | 2364 | |
43cd72b9 BW |
2365 | if (xg_check_num_args (pnum_args, 3, opname, arg_strings)) |
2366 | return -1; | |
2367 | if (xg_arg_is_constant (arg_strings[1], &val) && val == 0) | |
2368 | { | |
2369 | xg_replace_opname (popname, new_op); | |
2370 | free (arg_strings[1]); | |
2371 | arg_strings[1] = arg_strings[2]; | |
2372 | arg_strings[2] = 0; | |
2373 | *pnum_args = 2; | |
e0001a05 NC |
2374 | } |
2375 | ||
2376 | return 0; | |
2377 | } | |
2378 | ||
2379 | ||
2380 | /* If the instruction is an idiom (i.e., a built-in macro), translate it. | |
2381 | Returns non-zero if an error was found. */ | |
2382 | ||
2383 | static int | |
7fa3d080 | 2384 | xg_translate_idioms (char **popname, int *pnum_args, char **arg_strings) |
e0001a05 NC |
2385 | { |
2386 | char *opname = *popname; | |
2387 | bfd_boolean has_underbar = FALSE; | |
2388 | ||
2389 | if (*opname == '_') | |
2390 | { | |
2391 | has_underbar = TRUE; | |
2392 | opname += 1; | |
2393 | } | |
2394 | ||
2395 | if (strcmp (opname, "mov") == 0) | |
2396 | { | |
43cd72b9 | 2397 | if (use_transform () && !has_underbar && density_supported) |
e0001a05 NC |
2398 | xg_replace_opname (popname, "mov.n"); |
2399 | else | |
2400 | { | |
2401 | if (xg_check_num_args (pnum_args, 2, opname, arg_strings)) | |
2402 | return -1; | |
2403 | xg_replace_opname (popname, (has_underbar ? "_or" : "or")); | |
2404 | arg_strings[2] = (char *) xmalloc (strlen (arg_strings[1]) + 1); | |
2405 | strcpy (arg_strings[2], arg_strings[1]); | |
2406 | *pnum_args = 3; | |
2407 | } | |
2408 | return 0; | |
2409 | } | |
2410 | ||
2411 | if (strcmp (opname, "bbsi.l") == 0) | |
2412 | { | |
2413 | if (xg_check_num_args (pnum_args, 3, opname, arg_strings)) | |
2414 | return -1; | |
2415 | xg_replace_opname (popname, (has_underbar ? "_bbsi" : "bbsi")); | |
2416 | if (target_big_endian) | |
2417 | xg_reverse_shift_count (&arg_strings[1]); | |
2418 | return 0; | |
2419 | } | |
2420 | ||
2421 | if (strcmp (opname, "bbci.l") == 0) | |
2422 | { | |
2423 | if (xg_check_num_args (pnum_args, 3, opname, arg_strings)) | |
2424 | return -1; | |
2425 | xg_replace_opname (popname, (has_underbar ? "_bbci" : "bbci")); | |
2426 | if (target_big_endian) | |
2427 | xg_reverse_shift_count (&arg_strings[1]); | |
2428 | return 0; | |
2429 | } | |
2430 | ||
eb6d9dce BW |
2431 | /* Don't do anything special with NOPs inside FLIX instructions. They |
2432 | are handled elsewhere. Real NOP instructions are always available | |
2433 | in configurations with FLIX, so this should never be an issue but | |
2434 | check for it anyway. */ | |
2435 | if (!cur_vinsn.inside_bundle && xtensa_nop_opcode == XTENSA_UNDEFINED | |
43cd72b9 | 2436 | && strcmp (opname, "nop") == 0) |
e0001a05 | 2437 | { |
43cd72b9 | 2438 | if (use_transform () && !has_underbar && density_supported) |
e0001a05 NC |
2439 | xg_replace_opname (popname, "nop.n"); |
2440 | else | |
2441 | { | |
2442 | if (xg_check_num_args (pnum_args, 0, opname, arg_strings)) | |
2443 | return -1; | |
2444 | xg_replace_opname (popname, (has_underbar ? "_or" : "or")); | |
2445 | arg_strings[0] = (char *) xmalloc (3); | |
2446 | arg_strings[1] = (char *) xmalloc (3); | |
2447 | arg_strings[2] = (char *) xmalloc (3); | |
2448 | strcpy (arg_strings[0], "a1"); | |
2449 | strcpy (arg_strings[1], "a1"); | |
2450 | strcpy (arg_strings[2], "a1"); | |
2451 | *pnum_args = 3; | |
2452 | } | |
2453 | return 0; | |
2454 | } | |
2455 | ||
43cd72b9 BW |
2456 | /* Recognize [RW]UR and [RWX]SR. */ |
2457 | if ((((opname[0] == 'r' || opname[0] == 'w') | |
2458 | && (opname[1] == 'u' || opname[1] == 's')) | |
2459 | || (opname[0] == 'x' && opname[1] == 's')) | |
2460 | && opname[2] == 'r' | |
2461 | && opname[3] == '\0') | |
e0001a05 NC |
2462 | return xg_translate_sysreg_op (popname, pnum_args, arg_strings); |
2463 | ||
43cd72b9 BW |
2464 | /* Backward compatibility for RUR and WUR: Recognize [RW]UR<nnn> and |
2465 | [RW]<name> if <name> is the non-default name of a user register. */ | |
2466 | if ((opname[0] == 'r' || opname[0] == 'w') | |
2467 | && xtensa_opcode_lookup (xtensa_default_isa, opname) == XTENSA_UNDEFINED) | |
2468 | return xtensa_translate_old_userreg_ops (popname); | |
e0001a05 | 2469 | |
43cd72b9 BW |
2470 | /* Relax branches that don't allow comparisons against an immediate value |
2471 | of zero to the corresponding branches with implicit zero immediates. */ | |
2472 | if (!has_underbar && use_transform ()) | |
2473 | { | |
2474 | if (xtensa_translate_zero_immed ("bnei", "bnez", popname, | |
2475 | pnum_args, arg_strings)) | |
2476 | return -1; | |
e0001a05 | 2477 | |
43cd72b9 BW |
2478 | if (xtensa_translate_zero_immed ("beqi", "beqz", popname, |
2479 | pnum_args, arg_strings)) | |
2480 | return -1; | |
e0001a05 | 2481 | |
43cd72b9 BW |
2482 | if (xtensa_translate_zero_immed ("bgei", "bgez", popname, |
2483 | pnum_args, arg_strings)) | |
2484 | return -1; | |
e0001a05 | 2485 | |
43cd72b9 BW |
2486 | if (xtensa_translate_zero_immed ("blti", "bltz", popname, |
2487 | pnum_args, arg_strings)) | |
2488 | return -1; | |
2489 | } | |
e0001a05 | 2490 | |
43cd72b9 BW |
2491 | return 0; |
2492 | } | |
e0001a05 | 2493 | |
43cd72b9 BW |
2494 | \f |
2495 | /* Functions for dealing with the Xtensa ISA. */ | |
e0001a05 | 2496 | |
43cd72b9 BW |
2497 | /* Currently the assembler only allows us to use a single target per |
2498 | fragment. Because of this, only one operand for a given | |
2499 | instruction may be symbolic. If there is a PC-relative operand, | |
2500 | the last one is chosen. Otherwise, the result is the number of the | |
2501 | last immediate operand, and if there are none of those, we fail and | |
2502 | return -1. */ | |
e0001a05 | 2503 | |
7fa3d080 BW |
2504 | static int |
2505 | get_relaxable_immed (xtensa_opcode opcode) | |
43cd72b9 BW |
2506 | { |
2507 | int last_immed = -1; | |
2508 | int noperands, opi; | |
e0001a05 | 2509 | |
43cd72b9 BW |
2510 | if (opcode == XTENSA_UNDEFINED) |
2511 | return -1; | |
e0001a05 | 2512 | |
43cd72b9 BW |
2513 | noperands = xtensa_opcode_num_operands (xtensa_default_isa, opcode); |
2514 | for (opi = noperands - 1; opi >= 0; opi--) | |
2515 | { | |
2516 | if (xtensa_operand_is_visible (xtensa_default_isa, opcode, opi) == 0) | |
2517 | continue; | |
2518 | if (xtensa_operand_is_PCrelative (xtensa_default_isa, opcode, opi) == 1) | |
2519 | return opi; | |
2520 | if (last_immed == -1 | |
2521 | && xtensa_operand_is_register (xtensa_default_isa, opcode, opi) == 0) | |
2522 | last_immed = opi; | |
e0001a05 | 2523 | } |
43cd72b9 | 2524 | return last_immed; |
e0001a05 NC |
2525 | } |
2526 | ||
e0001a05 | 2527 | |
43cd72b9 | 2528 | static xtensa_opcode |
7fa3d080 | 2529 | get_opcode_from_buf (const char *buf, int slot) |
e0001a05 | 2530 | { |
43cd72b9 BW |
2531 | static xtensa_insnbuf insnbuf = NULL; |
2532 | static xtensa_insnbuf slotbuf = NULL; | |
2533 | xtensa_isa isa = xtensa_default_isa; | |
2534 | xtensa_format fmt; | |
2535 | ||
2536 | if (!insnbuf) | |
e0001a05 | 2537 | { |
43cd72b9 BW |
2538 | insnbuf = xtensa_insnbuf_alloc (isa); |
2539 | slotbuf = xtensa_insnbuf_alloc (isa); | |
e0001a05 | 2540 | } |
e0001a05 | 2541 | |
d77b99c9 | 2542 | xtensa_insnbuf_from_chars (isa, insnbuf, (const unsigned char *) buf, 0); |
43cd72b9 BW |
2543 | fmt = xtensa_format_decode (isa, insnbuf); |
2544 | if (fmt == XTENSA_UNDEFINED) | |
2545 | return XTENSA_UNDEFINED; | |
e0001a05 | 2546 | |
43cd72b9 BW |
2547 | if (slot >= xtensa_format_num_slots (isa, fmt)) |
2548 | return XTENSA_UNDEFINED; | |
e0001a05 | 2549 | |
43cd72b9 BW |
2550 | xtensa_format_get_slot (isa, fmt, slot, insnbuf, slotbuf); |
2551 | return xtensa_opcode_decode (isa, fmt, slot, slotbuf); | |
e0001a05 NC |
2552 | } |
2553 | ||
2554 | ||
43cd72b9 | 2555 | #ifdef TENSILICA_DEBUG |
e0001a05 | 2556 | |
43cd72b9 | 2557 | /* For debugging, print out the mapping of opcode numbers to opcodes. */ |
e0001a05 | 2558 | |
7fa3d080 BW |
2559 | static void |
2560 | xtensa_print_insn_table (void) | |
43cd72b9 BW |
2561 | { |
2562 | int num_opcodes, num_operands; | |
2563 | xtensa_opcode opcode; | |
2564 | xtensa_isa isa = xtensa_default_isa; | |
e0001a05 | 2565 | |
43cd72b9 BW |
2566 | num_opcodes = xtensa_isa_num_opcodes (xtensa_default_isa); |
2567 | for (opcode = 0; opcode < num_opcodes; opcode++) | |
e0001a05 | 2568 | { |
43cd72b9 BW |
2569 | int opn; |
2570 | fprintf (stderr, "%d: %s: ", opcode, xtensa_opcode_name (isa, opcode)); | |
2571 | num_operands = xtensa_opcode_num_operands (isa, opcode); | |
2572 | for (opn = 0; opn < num_operands; opn++) | |
2573 | { | |
2574 | if (xtensa_operand_is_visible (isa, opcode, opn) == 0) | |
2575 | continue; | |
2576 | if (xtensa_operand_is_register (isa, opcode, opn) == 1) | |
2577 | { | |
2578 | xtensa_regfile opnd_rf = | |
2579 | xtensa_operand_regfile (isa, opcode, opn); | |
2580 | fprintf (stderr, "%s ", xtensa_regfile_shortname (isa, opnd_rf)); | |
2581 | } | |
2582 | else if (xtensa_operand_is_PCrelative (isa, opcode, opn) == 1) | |
2583 | fputs ("[lLr] ", stderr); | |
2584 | else | |
2585 | fputs ("i ", stderr); | |
2586 | } | |
2587 | fprintf (stderr, "\n"); | |
e0001a05 | 2588 | } |
e0001a05 NC |
2589 | } |
2590 | ||
2591 | ||
43cd72b9 | 2592 | static void |
7fa3d080 | 2593 | print_vliw_insn (xtensa_insnbuf vbuf) |
e0001a05 | 2594 | { |
e0001a05 | 2595 | xtensa_isa isa = xtensa_default_isa; |
43cd72b9 BW |
2596 | xtensa_format f = xtensa_format_decode (isa, vbuf); |
2597 | xtensa_insnbuf sbuf = xtensa_insnbuf_alloc (isa); | |
2598 | int op; | |
e0001a05 | 2599 | |
43cd72b9 | 2600 | fprintf (stderr, "format = %d\n", f); |
e0001a05 | 2601 | |
43cd72b9 BW |
2602 | for (op = 0; op < xtensa_format_num_slots (isa, f); op++) |
2603 | { | |
2604 | xtensa_opcode opcode; | |
2605 | const char *opname; | |
2606 | int operands; | |
2607 | ||
2608 | xtensa_format_get_slot (isa, f, op, vbuf, sbuf); | |
2609 | opcode = xtensa_opcode_decode (isa, f, op, sbuf); | |
2610 | opname = xtensa_opcode_name (isa, opcode); | |
2611 | ||
2612 | fprintf (stderr, "op in slot %i is %s;\n", op, opname); | |
2613 | fprintf (stderr, " operands = "); | |
2614 | for (operands = 0; | |
2615 | operands < xtensa_opcode_num_operands (isa, opcode); | |
2616 | operands++) | |
2617 | { | |
2618 | unsigned int val; | |
2619 | if (xtensa_operand_is_visible (isa, opcode, operands) == 0) | |
2620 | continue; | |
2621 | xtensa_operand_get_field (isa, opcode, operands, f, op, sbuf, &val); | |
2622 | xtensa_operand_decode (isa, opcode, operands, &val); | |
2623 | fprintf (stderr, "%d ", val); | |
2624 | } | |
2625 | fprintf (stderr, "\n"); | |
2626 | } | |
2627 | xtensa_insnbuf_free (isa, sbuf); | |
e0001a05 NC |
2628 | } |
2629 | ||
43cd72b9 BW |
2630 | #endif /* TENSILICA_DEBUG */ |
2631 | ||
e0001a05 NC |
2632 | |
2633 | static bfd_boolean | |
7fa3d080 | 2634 | is_direct_call_opcode (xtensa_opcode opcode) |
e0001a05 | 2635 | { |
43cd72b9 BW |
2636 | xtensa_isa isa = xtensa_default_isa; |
2637 | int n, num_operands; | |
e0001a05 | 2638 | |
64b607e6 | 2639 | if (xtensa_opcode_is_call (isa, opcode) != 1) |
e0001a05 NC |
2640 | return FALSE; |
2641 | ||
43cd72b9 BW |
2642 | num_operands = xtensa_opcode_num_operands (isa, opcode); |
2643 | for (n = 0; n < num_operands; n++) | |
2644 | { | |
2645 | if (xtensa_operand_is_register (isa, opcode, n) == 0 | |
2646 | && xtensa_operand_is_PCrelative (isa, opcode, n) == 1) | |
2647 | return TRUE; | |
2648 | } | |
2649 | return FALSE; | |
e0001a05 NC |
2650 | } |
2651 | ||
2652 | ||
43cd72b9 BW |
2653 | /* Convert from BFD relocation type code to slot and operand number. |
2654 | Returns non-zero on failure. */ | |
e0001a05 | 2655 | |
43cd72b9 | 2656 | static int |
7fa3d080 | 2657 | decode_reloc (bfd_reloc_code_real_type reloc, int *slot, bfd_boolean *is_alt) |
e0001a05 | 2658 | { |
43cd72b9 BW |
2659 | if (reloc >= BFD_RELOC_XTENSA_SLOT0_OP |
2660 | && reloc <= BFD_RELOC_XTENSA_SLOT14_OP) | |
e0001a05 | 2661 | { |
43cd72b9 BW |
2662 | *slot = reloc - BFD_RELOC_XTENSA_SLOT0_OP; |
2663 | *is_alt = FALSE; | |
e0001a05 | 2664 | } |
43cd72b9 BW |
2665 | else if (reloc >= BFD_RELOC_XTENSA_SLOT0_ALT |
2666 | && reloc <= BFD_RELOC_XTENSA_SLOT14_ALT) | |
e0001a05 | 2667 | { |
43cd72b9 BW |
2668 | *slot = reloc - BFD_RELOC_XTENSA_SLOT0_ALT; |
2669 | *is_alt = TRUE; | |
e0001a05 | 2670 | } |
43cd72b9 BW |
2671 | else |
2672 | return -1; | |
2673 | ||
2674 | return 0; | |
e0001a05 NC |
2675 | } |
2676 | ||
2677 | ||
43cd72b9 BW |
2678 | /* Convert from slot number to BFD relocation type code for the |
2679 | standard PC-relative relocations. Return BFD_RELOC_NONE on | |
2680 | failure. */ | |
e0001a05 | 2681 | |
43cd72b9 | 2682 | static bfd_reloc_code_real_type |
7fa3d080 | 2683 | encode_reloc (int slot) |
e0001a05 | 2684 | { |
43cd72b9 BW |
2685 | if (slot < 0 || slot > 14) |
2686 | return BFD_RELOC_NONE; | |
2687 | ||
2688 | return BFD_RELOC_XTENSA_SLOT0_OP + slot; | |
e0001a05 NC |
2689 | } |
2690 | ||
2691 | ||
43cd72b9 BW |
2692 | /* Convert from slot numbers to BFD relocation type code for the |
2693 | "alternate" relocations. Return BFD_RELOC_NONE on failure. */ | |
e0001a05 | 2694 | |
43cd72b9 | 2695 | static bfd_reloc_code_real_type |
7fa3d080 | 2696 | encode_alt_reloc (int slot) |
e0001a05 | 2697 | { |
43cd72b9 BW |
2698 | if (slot < 0 || slot > 14) |
2699 | return BFD_RELOC_NONE; | |
2700 | ||
2701 | return BFD_RELOC_XTENSA_SLOT0_ALT + slot; | |
e0001a05 NC |
2702 | } |
2703 | ||
2704 | ||
2705 | static void | |
7fa3d080 BW |
2706 | xtensa_insnbuf_set_operand (xtensa_insnbuf slotbuf, |
2707 | xtensa_format fmt, | |
2708 | int slot, | |
2709 | xtensa_opcode opcode, | |
2710 | int operand, | |
2711 | uint32 value, | |
2712 | const char *file, | |
2713 | unsigned int line) | |
e0001a05 | 2714 | { |
e0001a05 NC |
2715 | uint32 valbuf = value; |
2716 | ||
43cd72b9 | 2717 | if (xtensa_operand_encode (xtensa_default_isa, opcode, operand, &valbuf)) |
e0001a05 | 2718 | { |
43cd72b9 BW |
2719 | if (xtensa_operand_is_PCrelative (xtensa_default_isa, opcode, operand) |
2720 | == 1) | |
2721 | as_bad_where ((char *) file, line, | |
d7c531cd BW |
2722 | _("operand %d of '%s' has out of range value '%u'"), |
2723 | operand + 1, | |
2724 | xtensa_opcode_name (xtensa_default_isa, opcode), | |
2725 | value); | |
43cd72b9 BW |
2726 | else |
2727 | as_bad_where ((char *) file, line, | |
d7c531cd BW |
2728 | _("operand %d of '%s' has invalid value '%u'"), |
2729 | operand + 1, | |
2730 | xtensa_opcode_name (xtensa_default_isa, opcode), | |
2731 | value); | |
43cd72b9 | 2732 | return; |
e0001a05 NC |
2733 | } |
2734 | ||
43cd72b9 BW |
2735 | xtensa_operand_set_field (xtensa_default_isa, opcode, operand, fmt, slot, |
2736 | slotbuf, valbuf); | |
e0001a05 NC |
2737 | } |
2738 | ||
2739 | ||
2740 | static uint32 | |
7fa3d080 BW |
2741 | xtensa_insnbuf_get_operand (xtensa_insnbuf slotbuf, |
2742 | xtensa_format fmt, | |
2743 | int slot, | |
2744 | xtensa_opcode opcode, | |
2745 | int opnum) | |
e0001a05 | 2746 | { |
43cd72b9 BW |
2747 | uint32 val = 0; |
2748 | (void) xtensa_operand_get_field (xtensa_default_isa, opcode, opnum, | |
2749 | fmt, slot, slotbuf, &val); | |
2750 | (void) xtensa_operand_decode (xtensa_default_isa, opcode, opnum, &val); | |
2751 | return val; | |
e0001a05 NC |
2752 | } |
2753 | ||
e0001a05 | 2754 | \f |
7fa3d080 | 2755 | /* Checks for rules from xtensa-relax tables. */ |
e0001a05 | 2756 | |
7fa3d080 BW |
2757 | /* The routine xg_instruction_matches_option_term must return TRUE |
2758 | when a given option term is true. The meaning of all of the option | |
19e8f41a | 2759 | terms is given interpretation by this function. */ |
e0001a05 | 2760 | |
7fa3d080 | 2761 | static bfd_boolean |
19e8f41a | 2762 | xg_instruction_matches_option_term (TInsn *insn, const ReqOrOption *option) |
e0001a05 | 2763 | { |
7fa3d080 BW |
2764 | if (strcmp (option->option_name, "realnop") == 0 |
2765 | || strncmp (option->option_name, "IsaUse", 6) == 0) | |
2766 | { | |
2767 | /* These conditions were evaluated statically when building the | |
2768 | relaxation table. There's no need to reevaluate them now. */ | |
2769 | return TRUE; | |
2770 | } | |
19e8f41a BW |
2771 | else if (strcmp (option->option_name, "FREEREG") == 0) |
2772 | return insn->extra_arg.X_op == O_register; | |
7fa3d080 BW |
2773 | else |
2774 | { | |
2775 | as_fatal (_("internal error: unknown option name '%s'"), | |
2776 | option->option_name); | |
2777 | } | |
e0001a05 NC |
2778 | } |
2779 | ||
2780 | ||
7fa3d080 BW |
2781 | static bfd_boolean |
2782 | xg_instruction_matches_or_options (TInsn *insn, | |
2783 | const ReqOrOptionList *or_option) | |
e0001a05 | 2784 | { |
7fa3d080 BW |
2785 | const ReqOrOption *option; |
2786 | /* Must match each of the AND terms. */ | |
2787 | for (option = or_option; option != NULL; option = option->next) | |
e0001a05 | 2788 | { |
7fa3d080 BW |
2789 | if (xg_instruction_matches_option_term (insn, option)) |
2790 | return TRUE; | |
e0001a05 | 2791 | } |
7fa3d080 | 2792 | return FALSE; |
e0001a05 NC |
2793 | } |
2794 | ||
2795 | ||
7fa3d080 BW |
2796 | static bfd_boolean |
2797 | xg_instruction_matches_options (TInsn *insn, const ReqOptionList *options) | |
e0001a05 | 2798 | { |
7fa3d080 BW |
2799 | const ReqOption *req_options; |
2800 | /* Must match each of the AND terms. */ | |
2801 | for (req_options = options; | |
2802 | req_options != NULL; | |
2803 | req_options = req_options->next) | |
e0001a05 | 2804 | { |
7fa3d080 BW |
2805 | /* Must match one of the OR clauses. */ |
2806 | if (!xg_instruction_matches_or_options (insn, | |
2807 | req_options->or_option_terms)) | |
2808 | return FALSE; | |
e0001a05 | 2809 | } |
7fa3d080 | 2810 | return TRUE; |
e0001a05 NC |
2811 | } |
2812 | ||
2813 | ||
7fa3d080 | 2814 | /* Return the transition rule that matches or NULL if none matches. */ |
e0001a05 | 2815 | |
7fa3d080 BW |
2816 | static bfd_boolean |
2817 | xg_instruction_matches_rule (TInsn *insn, TransitionRule *rule) | |
e0001a05 | 2818 | { |
7fa3d080 | 2819 | PreconditionList *condition_l; |
e0001a05 | 2820 | |
7fa3d080 BW |
2821 | if (rule->opcode != insn->opcode) |
2822 | return FALSE; | |
e0001a05 | 2823 | |
7fa3d080 BW |
2824 | for (condition_l = rule->conditions; |
2825 | condition_l != NULL; | |
2826 | condition_l = condition_l->next) | |
e0001a05 | 2827 | { |
7fa3d080 BW |
2828 | expressionS *exp1; |
2829 | expressionS *exp2; | |
2830 | Precondition *cond = condition_l->precond; | |
e0001a05 | 2831 | |
7fa3d080 | 2832 | switch (cond->typ) |
e0001a05 | 2833 | { |
7fa3d080 BW |
2834 | case OP_CONSTANT: |
2835 | /* The expression must be the constant. */ | |
9c2799c2 | 2836 | gas_assert (cond->op_num < insn->ntok); |
7fa3d080 BW |
2837 | exp1 = &insn->tok[cond->op_num]; |
2838 | if (expr_is_const (exp1)) | |
2839 | { | |
2840 | switch (cond->cmp) | |
2841 | { | |
2842 | case OP_EQUAL: | |
2843 | if (get_expr_const (exp1) != cond->op_data) | |
2844 | return FALSE; | |
2845 | break; | |
2846 | case OP_NOTEQUAL: | |
2847 | if (get_expr_const (exp1) == cond->op_data) | |
2848 | return FALSE; | |
2849 | break; | |
2850 | default: | |
2851 | return FALSE; | |
2852 | } | |
2853 | } | |
2854 | else if (expr_is_register (exp1)) | |
2855 | { | |
2856 | switch (cond->cmp) | |
2857 | { | |
2858 | case OP_EQUAL: | |
2859 | if (get_expr_register (exp1) != cond->op_data) | |
2860 | return FALSE; | |
2861 | break; | |
2862 | case OP_NOTEQUAL: | |
2863 | if (get_expr_register (exp1) == cond->op_data) | |
2864 | return FALSE; | |
2865 | break; | |
2866 | default: | |
2867 | return FALSE; | |
2868 | } | |
2869 | } | |
2870 | else | |
2871 | return FALSE; | |
2872 | break; | |
2873 | ||
2874 | case OP_OPERAND: | |
9c2799c2 NC |
2875 | gas_assert (cond->op_num < insn->ntok); |
2876 | gas_assert (cond->op_data < insn->ntok); | |
7fa3d080 BW |
2877 | exp1 = &insn->tok[cond->op_num]; |
2878 | exp2 = &insn->tok[cond->op_data]; | |
2879 | ||
2880 | switch (cond->cmp) | |
2881 | { | |
2882 | case OP_EQUAL: | |
2883 | if (!expr_is_equal (exp1, exp2)) | |
2884 | return FALSE; | |
2885 | break; | |
2886 | case OP_NOTEQUAL: | |
2887 | if (expr_is_equal (exp1, exp2)) | |
2888 | return FALSE; | |
2889 | break; | |
2890 | } | |
2891 | break; | |
2892 | ||
2893 | case OP_LITERAL: | |
2894 | case OP_LABEL: | |
2895 | default: | |
2896 | return FALSE; | |
2897 | } | |
2898 | } | |
2899 | if (!xg_instruction_matches_options (insn, rule->options)) | |
2900 | return FALSE; | |
2901 | ||
2902 | return TRUE; | |
2903 | } | |
2904 | ||
2905 | ||
2906 | static int | |
2907 | transition_rule_cmp (const TransitionRule *a, const TransitionRule *b) | |
2908 | { | |
2909 | bfd_boolean a_greater = FALSE; | |
2910 | bfd_boolean b_greater = FALSE; | |
2911 | ||
2912 | ReqOptionList *l_a = a->options; | |
2913 | ReqOptionList *l_b = b->options; | |
2914 | ||
2915 | /* We only care if they both are the same except for | |
2916 | a const16 vs. an l32r. */ | |
2917 | ||
2918 | while (l_a && l_b && ((l_a->next == NULL) == (l_b->next == NULL))) | |
2919 | { | |
2920 | ReqOrOptionList *l_or_a = l_a->or_option_terms; | |
2921 | ReqOrOptionList *l_or_b = l_b->or_option_terms; | |
2922 | while (l_or_a && l_or_b && ((l_a->next == NULL) == (l_b->next == NULL))) | |
2923 | { | |
2924 | if (l_or_a->is_true != l_or_b->is_true) | |
2925 | return 0; | |
2926 | if (strcmp (l_or_a->option_name, l_or_b->option_name) != 0) | |
2927 | { | |
2928 | /* This is the case we care about. */ | |
2929 | if (strcmp (l_or_a->option_name, "IsaUseConst16") == 0 | |
2930 | && strcmp (l_or_b->option_name, "IsaUseL32R") == 0) | |
2931 | { | |
2932 | if (prefer_const16) | |
2933 | a_greater = TRUE; | |
2934 | else | |
2935 | b_greater = TRUE; | |
2936 | } | |
2937 | else if (strcmp (l_or_a->option_name, "IsaUseL32R") == 0 | |
2938 | && strcmp (l_or_b->option_name, "IsaUseConst16") == 0) | |
2939 | { | |
2940 | if (prefer_const16) | |
2941 | b_greater = TRUE; | |
2942 | else | |
2943 | a_greater = TRUE; | |
2944 | } | |
2945 | else | |
2946 | return 0; | |
2947 | } | |
2948 | l_or_a = l_or_a->next; | |
2949 | l_or_b = l_or_b->next; | |
2950 | } | |
2951 | if (l_or_a || l_or_b) | |
2952 | return 0; | |
2953 | ||
2954 | l_a = l_a->next; | |
2955 | l_b = l_b->next; | |
2956 | } | |
2957 | if (l_a || l_b) | |
2958 | return 0; | |
2959 | ||
2960 | /* Incomparable if the substitution was used differently in two cases. */ | |
2961 | if (a_greater && b_greater) | |
2962 | return 0; | |
2963 | ||
2964 | if (b_greater) | |
2965 | return 1; | |
2966 | if (a_greater) | |
2967 | return -1; | |
2968 | ||
2969 | return 0; | |
2970 | } | |
2971 | ||
2972 | ||
2973 | static TransitionRule * | |
2974 | xg_instruction_match (TInsn *insn) | |
2975 | { | |
2976 | TransitionTable *table = xg_build_simplify_table (&transition_rule_cmp); | |
2977 | TransitionList *l; | |
9c2799c2 | 2978 | gas_assert (insn->opcode < table->num_opcodes); |
7fa3d080 BW |
2979 | |
2980 | /* Walk through all of the possible transitions. */ | |
2981 | for (l = table->table[insn->opcode]; l != NULL; l = l->next) | |
2982 | { | |
2983 | TransitionRule *rule = l->rule; | |
2984 | if (xg_instruction_matches_rule (insn, rule)) | |
2985 | return rule; | |
2986 | } | |
2987 | return NULL; | |
2988 | } | |
2989 | ||
2990 | \f | |
2991 | /* Various Other Internal Functions. */ | |
2992 | ||
2993 | static bfd_boolean | |
2994 | is_unique_insn_expansion (TransitionRule *r) | |
2995 | { | |
2996 | if (!r->to_instr || r->to_instr->next != NULL) | |
2997 | return FALSE; | |
2998 | if (r->to_instr->typ != INSTR_INSTR) | |
2999 | return FALSE; | |
3000 | return TRUE; | |
3001 | } | |
3002 | ||
3003 | ||
84b08ed9 BW |
3004 | /* Check if there is exactly one relaxation for INSN that converts it to |
3005 | another instruction of equal or larger size. If so, and if TARG is | |
3006 | non-null, go ahead and generate the relaxed instruction into TARG. If | |
3007 | NARROW_ONLY is true, then only consider relaxations that widen a narrow | |
3008 | instruction, i.e., ignore relaxations that convert to an instruction of | |
3009 | equal size. In some contexts where this function is used, only | |
c138bc38 | 3010 | a single widening is allowed and the NARROW_ONLY argument is used to |
84b08ed9 BW |
3011 | exclude cases like ADDI being "widened" to an ADDMI, which may |
3012 | later be relaxed to an ADDMI/ADDI pair. */ | |
7fa3d080 | 3013 | |
84b08ed9 BW |
3014 | bfd_boolean |
3015 | xg_is_single_relaxable_insn (TInsn *insn, TInsn *targ, bfd_boolean narrow_only) | |
7fa3d080 BW |
3016 | { |
3017 | TransitionTable *table = xg_build_widen_table (&transition_rule_cmp); | |
3018 | TransitionList *l; | |
84b08ed9 | 3019 | TransitionRule *match = 0; |
7fa3d080 | 3020 | |
9c2799c2 NC |
3021 | gas_assert (insn->insn_type == ITYPE_INSN); |
3022 | gas_assert (insn->opcode < table->num_opcodes); | |
7fa3d080 BW |
3023 | |
3024 | for (l = table->table[insn->opcode]; l != NULL; l = l->next) | |
3025 | { | |
3026 | TransitionRule *rule = l->rule; | |
3027 | ||
3028 | if (xg_instruction_matches_rule (insn, rule) | |
84b08ed9 BW |
3029 | && is_unique_insn_expansion (rule) |
3030 | && (xg_get_single_size (insn->opcode) + (narrow_only ? 1 : 0) | |
3031 | <= xg_get_single_size (rule->to_instr->opcode))) | |
7fa3d080 | 3032 | { |
84b08ed9 BW |
3033 | if (match) |
3034 | return FALSE; | |
3035 | match = rule; | |
7fa3d080 BW |
3036 | } |
3037 | } | |
84b08ed9 BW |
3038 | if (!match) |
3039 | return FALSE; | |
3040 | ||
3041 | if (targ) | |
3042 | xg_build_to_insn (targ, insn, match->to_instr); | |
3043 | return TRUE; | |
7fa3d080 BW |
3044 | } |
3045 | ||
3046 | ||
3047 | /* Return the maximum number of bytes this opcode can expand to. */ | |
3048 | ||
3049 | static int | |
3050 | xg_get_max_insn_widen_size (xtensa_opcode opcode) | |
3051 | { | |
3052 | TransitionTable *table = xg_build_widen_table (&transition_rule_cmp); | |
3053 | TransitionList *l; | |
3054 | int max_size = xg_get_single_size (opcode); | |
3055 | ||
9c2799c2 | 3056 | gas_assert (opcode < table->num_opcodes); |
7fa3d080 BW |
3057 | |
3058 | for (l = table->table[opcode]; l != NULL; l = l->next) | |
3059 | { | |
3060 | TransitionRule *rule = l->rule; | |
3061 | BuildInstr *build_list; | |
3062 | int this_size = 0; | |
3063 | ||
3064 | if (!rule) | |
3065 | continue; | |
3066 | build_list = rule->to_instr; | |
3067 | if (is_unique_insn_expansion (rule)) | |
3068 | { | |
9c2799c2 | 3069 | gas_assert (build_list->typ == INSTR_INSTR); |
7fa3d080 BW |
3070 | this_size = xg_get_max_insn_widen_size (build_list->opcode); |
3071 | } | |
3072 | else | |
3073 | for (; build_list != NULL; build_list = build_list->next) | |
3074 | { | |
3075 | switch (build_list->typ) | |
3076 | { | |
3077 | case INSTR_INSTR: | |
3078 | this_size += xg_get_single_size (build_list->opcode); | |
3079 | break; | |
3080 | case INSTR_LITERAL_DEF: | |
3081 | case INSTR_LABEL_DEF: | |
e0001a05 NC |
3082 | default: |
3083 | break; | |
3084 | } | |
3085 | } | |
3086 | if (this_size > max_size) | |
3087 | max_size = this_size; | |
3088 | } | |
3089 | return max_size; | |
3090 | } | |
3091 | ||
3092 | ||
3093 | /* Return the maximum number of literal bytes this opcode can generate. */ | |
3094 | ||
7fa3d080 BW |
3095 | static int |
3096 | xg_get_max_insn_widen_literal_size (xtensa_opcode opcode) | |
e0001a05 | 3097 | { |
43cd72b9 | 3098 | TransitionTable *table = xg_build_widen_table (&transition_rule_cmp); |
e0001a05 NC |
3099 | TransitionList *l; |
3100 | int max_size = 0; | |
3101 | ||
9c2799c2 | 3102 | gas_assert (opcode < table->num_opcodes); |
e0001a05 NC |
3103 | |
3104 | for (l = table->table[opcode]; l != NULL; l = l->next) | |
3105 | { | |
3106 | TransitionRule *rule = l->rule; | |
3107 | BuildInstr *build_list; | |
3108 | int this_size = 0; | |
3109 | ||
3110 | if (!rule) | |
3111 | continue; | |
3112 | build_list = rule->to_instr; | |
3113 | if (is_unique_insn_expansion (rule)) | |
3114 | { | |
9c2799c2 | 3115 | gas_assert (build_list->typ == INSTR_INSTR); |
e0001a05 NC |
3116 | this_size = xg_get_max_insn_widen_literal_size (build_list->opcode); |
3117 | } | |
3118 | else | |
3119 | for (; build_list != NULL; build_list = build_list->next) | |
3120 | { | |
3121 | switch (build_list->typ) | |
3122 | { | |
3123 | case INSTR_LITERAL_DEF: | |
43cd72b9 | 3124 | /* Hard-coded 4-byte literal. */ |
e0001a05 NC |
3125 | this_size += 4; |
3126 | break; | |
3127 | case INSTR_INSTR: | |
3128 | case INSTR_LABEL_DEF: | |
3129 | default: | |
3130 | break; | |
3131 | } | |
3132 | } | |
3133 | if (this_size > max_size) | |
3134 | max_size = this_size; | |
3135 | } | |
3136 | return max_size; | |
3137 | } | |
3138 | ||
3139 | ||
7fa3d080 BW |
3140 | static bfd_boolean |
3141 | xg_is_relaxable_insn (TInsn *insn, int lateral_steps) | |
3142 | { | |
3143 | int steps_taken = 0; | |
3144 | TransitionTable *table = xg_build_widen_table (&transition_rule_cmp); | |
3145 | TransitionList *l; | |
3146 | ||
9c2799c2 NC |
3147 | gas_assert (insn->insn_type == ITYPE_INSN); |
3148 | gas_assert (insn->opcode < table->num_opcodes); | |
7fa3d080 BW |
3149 | |
3150 | for (l = table->table[insn->opcode]; l != NULL; l = l->next) | |
3151 | { | |
3152 | TransitionRule *rule = l->rule; | |
3153 | ||
3154 | if (xg_instruction_matches_rule (insn, rule)) | |
3155 | { | |
3156 | if (steps_taken == lateral_steps) | |
3157 | return TRUE; | |
3158 | steps_taken++; | |
3159 | } | |
3160 | } | |
3161 | return FALSE; | |
3162 | } | |
3163 | ||
3164 | ||
3165 | static symbolS * | |
3166 | get_special_literal_symbol (void) | |
3167 | { | |
3168 | static symbolS *sym = NULL; | |
3169 | ||
3170 | if (sym == NULL) | |
3171 | sym = symbol_find_or_make ("SPECIAL_LITERAL0\001"); | |
3172 | return sym; | |
3173 | } | |
3174 | ||
3175 | ||
3176 | static symbolS * | |
3177 | get_special_label_symbol (void) | |
3178 | { | |
3179 | static symbolS *sym = NULL; | |
3180 | ||
3181 | if (sym == NULL) | |
3182 | sym = symbol_find_or_make ("SPECIAL_LABEL0\001"); | |
3183 | return sym; | |
3184 | } | |
3185 | ||
3186 | ||
3187 | static bfd_boolean | |
3188 | xg_valid_literal_expression (const expressionS *exp) | |
3189 | { | |
3190 | switch (exp->X_op) | |
3191 | { | |
3192 | case O_constant: | |
3193 | case O_symbol: | |
3194 | case O_big: | |
3195 | case O_uminus: | |
3196 | case O_subtract: | |
3197 | case O_pltrel: | |
1bbb5f21 | 3198 | case O_pcrel: |
28dbbc02 BW |
3199 | case O_tlsfunc: |
3200 | case O_tlsarg: | |
3201 | case O_tpoff: | |
3202 | case O_dtpoff: | |
7fa3d080 BW |
3203 | return TRUE; |
3204 | default: | |
3205 | return FALSE; | |
3206 | } | |
3207 | } | |
3208 | ||
3209 | ||
3210 | /* This will check to see if the value can be converted into the | |
3211 | operand type. It will return TRUE if it does not fit. */ | |
3212 | ||
3213 | static bfd_boolean | |
3214 | xg_check_operand (int32 value, xtensa_opcode opcode, int operand) | |
3215 | { | |
3216 | uint32 valbuf = value; | |
3217 | if (xtensa_operand_encode (xtensa_default_isa, opcode, operand, &valbuf)) | |
3218 | return TRUE; | |
3219 | return FALSE; | |
3220 | } | |
3221 | ||
3222 | ||
3223 | /* Assumes: All immeds are constants. Check that all constants fit | |
3224 | into their immeds; return FALSE if not. */ | |
3225 | ||
3226 | static bfd_boolean | |
3227 | xg_immeds_fit (const TInsn *insn) | |
3228 | { | |
3229 | xtensa_isa isa = xtensa_default_isa; | |
3230 | int i; | |
3231 | ||
3232 | int n = insn->ntok; | |
9c2799c2 | 3233 | gas_assert (insn->insn_type == ITYPE_INSN); |
7fa3d080 BW |
3234 | for (i = 0; i < n; ++i) |
3235 | { | |
91d6fa6a NC |
3236 | const expressionS *exp = &insn->tok[i]; |
3237 | ||
7fa3d080 BW |
3238 | if (xtensa_operand_is_register (isa, insn->opcode, i) == 1) |
3239 | continue; | |
3240 | ||
91d6fa6a | 3241 | switch (exp->X_op) |
7fa3d080 BW |
3242 | { |
3243 | case O_register: | |
3244 | case O_constant: | |
91d6fa6a | 3245 | if (xg_check_operand (exp->X_add_number, insn->opcode, i)) |
7fa3d080 BW |
3246 | return FALSE; |
3247 | break; | |
3248 | ||
3249 | default: | |
3250 | /* The symbol should have a fixup associated with it. */ | |
9c2799c2 | 3251 | gas_assert (FALSE); |
7fa3d080 BW |
3252 | break; |
3253 | } | |
3254 | } | |
3255 | return TRUE; | |
3256 | } | |
3257 | ||
3258 | ||
3259 | /* This should only be called after we have an initial | |
3260 | estimate of the addresses. */ | |
3261 | ||
3262 | static bfd_boolean | |
3263 | xg_symbolic_immeds_fit (const TInsn *insn, | |
3264 | segT pc_seg, | |
3265 | fragS *pc_frag, | |
3266 | offsetT pc_offset, | |
3267 | long stretch) | |
e0001a05 | 3268 | { |
7fa3d080 BW |
3269 | xtensa_isa isa = xtensa_default_isa; |
3270 | symbolS *symbolP; | |
3271 | fragS *sym_frag; | |
3272 | offsetT target, pc; | |
3273 | uint32 new_offset; | |
3274 | int i; | |
3275 | int n = insn->ntok; | |
e0001a05 | 3276 | |
9c2799c2 | 3277 | gas_assert (insn->insn_type == ITYPE_INSN); |
e0001a05 | 3278 | |
7fa3d080 | 3279 | for (i = 0; i < n; ++i) |
e0001a05 | 3280 | { |
91d6fa6a NC |
3281 | const expressionS *exp = &insn->tok[i]; |
3282 | ||
7fa3d080 BW |
3283 | if (xtensa_operand_is_register (isa, insn->opcode, i) == 1) |
3284 | continue; | |
e0001a05 | 3285 | |
91d6fa6a | 3286 | switch (exp->X_op) |
e0001a05 | 3287 | { |
7fa3d080 BW |
3288 | case O_register: |
3289 | case O_constant: | |
91d6fa6a | 3290 | if (xg_check_operand (exp->X_add_number, insn->opcode, i)) |
7fa3d080 BW |
3291 | return FALSE; |
3292 | break; | |
e0001a05 | 3293 | |
7fa3d080 BW |
3294 | case O_lo16: |
3295 | case O_hi16: | |
3296 | /* Check for the worst case. */ | |
3297 | if (xg_check_operand (0xffff, insn->opcode, i)) | |
3298 | return FALSE; | |
3299 | break; | |
e0001a05 | 3300 | |
7fa3d080 | 3301 | case O_symbol: |
7c834684 | 3302 | /* We only allow symbols for PC-relative references. |
7fa3d080 | 3303 | If pc_frag == 0, then we don't have frag locations yet. */ |
7c834684 BW |
3304 | if (pc_frag == 0 |
3305 | || xtensa_operand_is_PCrelative (isa, insn->opcode, i) == 0) | |
7fa3d080 | 3306 | return FALSE; |
e0001a05 | 3307 | |
8e6bc631 BW |
3308 | /* If it is a weak symbol or a symbol in a different section, |
3309 | it cannot be known to fit at assembly time. */ | |
91d6fa6a NC |
3310 | if (S_IS_WEAK (exp->X_add_symbol) |
3311 | || S_GET_SEGMENT (exp->X_add_symbol) != pc_seg) | |
7c834684 | 3312 | { |
8e6bc631 | 3313 | /* For a direct call with --no-longcalls, be optimistic and |
38f9cb7f BW |
3314 | assume it will be in range. If the symbol is weak and |
3315 | undefined, it may remain undefined at link-time, in which | |
3316 | case it will have a zero value and almost certainly be out | |
3317 | of range for a direct call; thus, relax for undefined weak | |
3318 | symbols even if longcalls is not enabled. */ | |
8e6bc631 | 3319 | if (is_direct_call_opcode (insn->opcode) |
38f9cb7f | 3320 | && ! pc_frag->tc_frag_data.use_longcalls |
91d6fa6a NC |
3321 | && (! S_IS_WEAK (exp->X_add_symbol) |
3322 | || S_IS_DEFINED (exp->X_add_symbol))) | |
7c834684 | 3323 | return TRUE; |
7c834684 | 3324 | |
8e6bc631 BW |
3325 | return FALSE; |
3326 | } | |
e0001a05 | 3327 | |
91d6fa6a | 3328 | symbolP = exp->X_add_symbol; |
7fa3d080 | 3329 | sym_frag = symbol_get_frag (symbolP); |
91d6fa6a | 3330 | target = S_GET_VALUE (symbolP) + exp->X_add_number; |
7fa3d080 | 3331 | pc = pc_frag->fr_address + pc_offset; |
e0001a05 | 3332 | |
7fa3d080 BW |
3333 | /* If frag has yet to be reached on this pass, assume it |
3334 | will move by STRETCH just as we did. If this is not so, | |
3335 | it will be because some frag between grows, and that will | |
3336 | force another pass. Beware zero-length frags. There | |
3337 | should be a faster way to do this. */ | |
3338 | ||
3339 | if (stretch != 0 | |
3340 | && sym_frag->relax_marker != pc_frag->relax_marker | |
3341 | && S_GET_SEGMENT (symbolP) == pc_seg) | |
3342 | { | |
3343 | target += stretch; | |
3344 | } | |
c138bc38 | 3345 | |
7fa3d080 BW |
3346 | new_offset = target; |
3347 | xtensa_operand_do_reloc (isa, insn->opcode, i, &new_offset, pc); | |
3348 | if (xg_check_operand (new_offset, insn->opcode, i)) | |
3349 | return FALSE; | |
3350 | break; | |
3351 | ||
3352 | default: | |
3353 | /* The symbol should have a fixup associated with it. */ | |
3354 | return FALSE; | |
3355 | } | |
3356 | } | |
3357 | ||
3358 | return TRUE; | |
e0001a05 NC |
3359 | } |
3360 | ||
3361 | ||
43cd72b9 | 3362 | /* Return TRUE on success. */ |
e0001a05 | 3363 | |
7fa3d080 BW |
3364 | static bfd_boolean |
3365 | xg_build_to_insn (TInsn *targ, TInsn *insn, BuildInstr *bi) | |
e0001a05 NC |
3366 | { |
3367 | BuildOp *op; | |
3368 | symbolS *sym; | |
3369 | ||
60242db2 | 3370 | tinsn_init (targ); |
b224e962 BW |
3371 | targ->debug_line = insn->debug_line; |
3372 | targ->loc_directive_seen = insn->loc_directive_seen; | |
e0001a05 NC |
3373 | switch (bi->typ) |
3374 | { | |
3375 | case INSTR_INSTR: | |
3376 | op = bi->ops; | |
3377 | targ->opcode = bi->opcode; | |
3378 | targ->insn_type = ITYPE_INSN; | |
3379 | targ->is_specific_opcode = FALSE; | |
3380 | ||
3381 | for (; op != NULL; op = op->next) | |
3382 | { | |
3383 | int op_num = op->op_num; | |
3384 | int op_data = op->op_data; | |
3385 | ||
9c2799c2 | 3386 | gas_assert (op->op_num < MAX_INSN_ARGS); |
e0001a05 NC |
3387 | |
3388 | if (targ->ntok <= op_num) | |
3389 | targ->ntok = op_num + 1; | |
3390 | ||
3391 | switch (op->typ) | |
3392 | { | |
3393 | case OP_CONSTANT: | |
3394 | set_expr_const (&targ->tok[op_num], op_data); | |
3395 | break; | |
3396 | case OP_OPERAND: | |
9c2799c2 | 3397 | gas_assert (op_data < insn->ntok); |
e0001a05 NC |
3398 | copy_expr (&targ->tok[op_num], &insn->tok[op_data]); |
3399 | break; | |
19e8f41a BW |
3400 | case OP_FREEREG: |
3401 | if (insn->extra_arg.X_op != O_register) | |
3402 | return FALSE; | |
3403 | copy_expr (&targ->tok[op_num], &insn->extra_arg); | |
3404 | break; | |
e0001a05 NC |
3405 | case OP_LITERAL: |
3406 | sym = get_special_literal_symbol (); | |
3407 | set_expr_symbol_offset (&targ->tok[op_num], sym, 0); | |
28dbbc02 BW |
3408 | if (insn->tok[op_data].X_op == O_tlsfunc |
3409 | || insn->tok[op_data].X_op == O_tlsarg) | |
19e8f41a | 3410 | copy_expr (&targ->extra_arg, &insn->tok[op_data]); |
e0001a05 NC |
3411 | break; |
3412 | case OP_LABEL: | |
3413 | sym = get_special_label_symbol (); | |
3414 | set_expr_symbol_offset (&targ->tok[op_num], sym, 0); | |
3415 | break; | |
43cd72b9 BW |
3416 | case OP_OPERAND_HI16U: |
3417 | case OP_OPERAND_LOW16U: | |
9c2799c2 | 3418 | gas_assert (op_data < insn->ntok); |
43cd72b9 BW |
3419 | if (expr_is_const (&insn->tok[op_data])) |
3420 | { | |
3421 | long val; | |
3422 | copy_expr (&targ->tok[op_num], &insn->tok[op_data]); | |
3423 | val = xg_apply_userdef_op_fn (op->typ, | |
3424 | targ->tok[op_num]. | |
3425 | X_add_number); | |
3426 | targ->tok[op_num].X_add_number = val; | |
3427 | } | |
3428 | else | |
3429 | { | |
3430 | /* For const16 we can create relocations for these. */ | |
3431 | if (targ->opcode == XTENSA_UNDEFINED | |
3432 | || (targ->opcode != xtensa_const16_opcode)) | |
3433 | return FALSE; | |
9c2799c2 | 3434 | gas_assert (op_data < insn->ntok); |
43cd72b9 BW |
3435 | /* Need to build a O_lo16 or O_hi16. */ |
3436 | copy_expr (&targ->tok[op_num], &insn->tok[op_data]); | |
3437 | if (targ->tok[op_num].X_op == O_symbol) | |
3438 | { | |
3439 | if (op->typ == OP_OPERAND_HI16U) | |
3440 | targ->tok[op_num].X_op = O_hi16; | |
3441 | else if (op->typ == OP_OPERAND_LOW16U) | |
3442 | targ->tok[op_num].X_op = O_lo16; | |
3443 | else | |
3444 | return FALSE; | |
3445 | } | |
3446 | } | |
3447 | break; | |
e0001a05 NC |
3448 | default: |
3449 | /* currently handles: | |
3450 | OP_OPERAND_LOW8 | |
3451 | OP_OPERAND_HI24S | |
3452 | OP_OPERAND_F32MINUS */ | |
3453 | if (xg_has_userdef_op_fn (op->typ)) | |
3454 | { | |
9c2799c2 | 3455 | gas_assert (op_data < insn->ntok); |
e0001a05 NC |
3456 | if (expr_is_const (&insn->tok[op_data])) |
3457 | { | |
3458 | long val; | |
3459 | copy_expr (&targ->tok[op_num], &insn->tok[op_data]); | |
3460 | val = xg_apply_userdef_op_fn (op->typ, | |
3461 | targ->tok[op_num]. | |
3462 | X_add_number); | |
3463 | targ->tok[op_num].X_add_number = val; | |
3464 | } | |
3465 | else | |
3466 | return FALSE; /* We cannot use a relocation for this. */ | |
3467 | break; | |
3468 | } | |
9c2799c2 | 3469 | gas_assert (0); |
e0001a05 NC |
3470 | break; |
3471 | } | |
3472 | } | |
3473 | break; | |
3474 | ||
3475 | case INSTR_LITERAL_DEF: | |
3476 | op = bi->ops; | |
3477 | targ->opcode = XTENSA_UNDEFINED; | |
3478 | targ->insn_type = ITYPE_LITERAL; | |
3479 | targ->is_specific_opcode = FALSE; | |
3480 | for (; op != NULL; op = op->next) | |
3481 | { | |
3482 | int op_num = op->op_num; | |
3483 | int op_data = op->op_data; | |
9c2799c2 | 3484 | gas_assert (op->op_num < MAX_INSN_ARGS); |
e0001a05 NC |
3485 | |
3486 | if (targ->ntok <= op_num) | |
3487 | targ->ntok = op_num + 1; | |
3488 | ||
3489 | switch (op->typ) | |
3490 | { | |
3491 | case OP_OPERAND: | |
9c2799c2 | 3492 | gas_assert (op_data < insn->ntok); |
43cd72b9 BW |
3493 | /* We can only pass resolvable literals through. */ |
3494 | if (!xg_valid_literal_expression (&insn->tok[op_data])) | |
3495 | return FALSE; | |
e0001a05 NC |
3496 | copy_expr (&targ->tok[op_num], &insn->tok[op_data]); |
3497 | break; | |
3498 | case OP_LITERAL: | |
3499 | case OP_CONSTANT: | |
3500 | case OP_LABEL: | |
3501 | default: | |
9c2799c2 | 3502 | gas_assert (0); |
e0001a05 NC |
3503 | break; |
3504 | } | |
3505 | } | |
3506 | break; | |
3507 | ||
3508 | case INSTR_LABEL_DEF: | |
3509 | op = bi->ops; | |
3510 | targ->opcode = XTENSA_UNDEFINED; | |
3511 | targ->insn_type = ITYPE_LABEL; | |
3512 | targ->is_specific_opcode = FALSE; | |
43cd72b9 | 3513 | /* Literal with no ops is a label? */ |
9c2799c2 | 3514 | gas_assert (op == NULL); |
e0001a05 NC |
3515 | break; |
3516 | ||
3517 | default: | |
9c2799c2 | 3518 | gas_assert (0); |
e0001a05 NC |
3519 | } |
3520 | ||
3521 | return TRUE; | |
3522 | } | |
3523 | ||
3524 | ||
43cd72b9 | 3525 | /* Return TRUE on success. */ |
e0001a05 | 3526 | |
7fa3d080 BW |
3527 | static bfd_boolean |
3528 | xg_build_to_stack (IStack *istack, TInsn *insn, BuildInstr *bi) | |
e0001a05 NC |
3529 | { |
3530 | for (; bi != NULL; bi = bi->next) | |
3531 | { | |
3532 | TInsn *next_insn = istack_push_space (istack); | |
3533 | ||
3534 | if (!xg_build_to_insn (next_insn, insn, bi)) | |
3535 | return FALSE; | |
3536 | } | |
3537 | return TRUE; | |
3538 | } | |
3539 | ||
3540 | ||
43cd72b9 | 3541 | /* Return TRUE on valid expansion. */ |
e0001a05 | 3542 | |
7fa3d080 BW |
3543 | static bfd_boolean |
3544 | xg_expand_to_stack (IStack *istack, TInsn *insn, int lateral_steps) | |
e0001a05 NC |
3545 | { |
3546 | int stack_size = istack->ninsn; | |
3547 | int steps_taken = 0; | |
43cd72b9 | 3548 | TransitionTable *table = xg_build_widen_table (&transition_rule_cmp); |
e0001a05 NC |
3549 | TransitionList *l; |
3550 | ||
9c2799c2 NC |
3551 | gas_assert (insn->insn_type == ITYPE_INSN); |
3552 | gas_assert (insn->opcode < table->num_opcodes); | |
e0001a05 NC |
3553 | |
3554 | for (l = table->table[insn->opcode]; l != NULL; l = l->next) | |
3555 | { | |
3556 | TransitionRule *rule = l->rule; | |
3557 | ||
3558 | if (xg_instruction_matches_rule (insn, rule)) | |
3559 | { | |
3560 | if (lateral_steps == steps_taken) | |
3561 | { | |
3562 | int i; | |
3563 | ||
3564 | /* This is it. Expand the rule to the stack. */ | |
3565 | if (!xg_build_to_stack (istack, insn, rule->to_instr)) | |
3566 | return FALSE; | |
3567 | ||
3568 | /* Check to see if it fits. */ | |
3569 | for (i = stack_size; i < istack->ninsn; i++) | |
3570 | { | |
91d6fa6a | 3571 | TInsn *tinsn = &istack->insn[i]; |
e0001a05 | 3572 | |
91d6fa6a NC |
3573 | if (tinsn->insn_type == ITYPE_INSN |
3574 | && !tinsn_has_symbolic_operands (tinsn) | |
3575 | && !xg_immeds_fit (tinsn)) | |
e0001a05 NC |
3576 | { |
3577 | istack->ninsn = stack_size; | |
3578 | return FALSE; | |
3579 | } | |
3580 | } | |
3581 | return TRUE; | |
3582 | } | |
3583 | steps_taken++; | |
3584 | } | |
3585 | } | |
3586 | return FALSE; | |
3587 | } | |
3588 | ||
43cd72b9 | 3589 | \f |
43cd72b9 | 3590 | /* Relax the assembly instruction at least "min_steps". |
b81bf389 BW |
3591 | Return the number of steps taken. |
3592 | ||
3593 | For relaxation to correctly terminate, every relaxation chain must | |
3594 | terminate in one of two ways: | |
3595 | ||
3596 | 1. If the chain from one instruction to the next consists entirely of | |
3597 | single instructions, then the chain *must* handle all possible | |
3598 | immediates without failing. It must not ever fail because an | |
3599 | immediate is out of range. The MOVI.N -> MOVI -> L32R relaxation | |
3600 | chain is one example. L32R loads 32 bits, and there cannot be an | |
3601 | immediate larger than 32 bits, so it satisfies this condition. | |
3602 | Single instruction relaxation chains are as defined by | |
3603 | xg_is_single_relaxable_instruction. | |
3604 | ||
3605 | 2. Otherwise, the chain must end in a multi-instruction expansion: e.g., | |
3606 | BNEZ.N -> BNEZ -> BNEZ.W15 -> BENZ.N/J | |
3607 | ||
3608 | Strictly speaking, in most cases you can violate condition 1 and be OK | |
3609 | -- in particular when the last two instructions have the same single | |
3610 | size. But nevertheless, you should guarantee the above two conditions. | |
3611 | ||
3612 | We could fix this so that single-instruction expansions correctly | |
3613 | terminate when they can't handle the range, but the error messages are | |
3614 | worse, and it actually turns out that in every case but one (18-bit wide | |
3615 | branches), you need a multi-instruction expansion to get the full range | |
3616 | anyway. And because 18-bit branches are handled identically to 15-bit | |
3617 | branches, there isn't any point in changing it. */ | |
e0001a05 | 3618 | |
7fa3d080 BW |
3619 | static int |
3620 | xg_assembly_relax (IStack *istack, | |
3621 | TInsn *insn, | |
3622 | segT pc_seg, | |
3623 | fragS *pc_frag, /* if pc_frag == 0, not pc-relative */ | |
3624 | offsetT pc_offset, /* offset in fragment */ | |
3625 | int min_steps, /* minimum conversion steps */ | |
3626 | long stretch) /* number of bytes stretched so far */ | |
e0001a05 NC |
3627 | { |
3628 | int steps_taken = 0; | |
3629 | ||
b81bf389 BW |
3630 | /* Some of its immeds don't fit. Try to build a relaxed version. |
3631 | This may go through a couple of stages of single instruction | |
3632 | transformations before we get there. */ | |
e0001a05 NC |
3633 | |
3634 | TInsn single_target; | |
3635 | TInsn current_insn; | |
3636 | int lateral_steps = 0; | |
3637 | int istack_size = istack->ninsn; | |
3638 | ||
3639 | if (xg_symbolic_immeds_fit (insn, pc_seg, pc_frag, pc_offset, stretch) | |
3640 | && steps_taken >= min_steps) | |
3641 | { | |
3642 | istack_push (istack, insn); | |
3643 | return steps_taken; | |
3644 | } | |
43cd72b9 | 3645 | current_insn = *insn; |
e0001a05 | 3646 | |
7c834684 | 3647 | /* Walk through all of the single instruction expansions. */ |
84b08ed9 | 3648 | while (xg_is_single_relaxable_insn (¤t_insn, &single_target, FALSE)) |
e0001a05 | 3649 | { |
21af2bbd | 3650 | steps_taken++; |
e0001a05 NC |
3651 | if (xg_symbolic_immeds_fit (&single_target, pc_seg, pc_frag, pc_offset, |
3652 | stretch)) | |
3653 | { | |
e0001a05 NC |
3654 | if (steps_taken >= min_steps) |
3655 | { | |
3656 | istack_push (istack, &single_target); | |
3657 | return steps_taken; | |
3658 | } | |
3659 | } | |
43cd72b9 | 3660 | current_insn = single_target; |
e0001a05 NC |
3661 | } |
3662 | ||
3663 | /* Now check for a multi-instruction expansion. */ | |
3664 | while (xg_is_relaxable_insn (¤t_insn, lateral_steps)) | |
3665 | { | |
3666 | if (xg_symbolic_immeds_fit (¤t_insn, pc_seg, pc_frag, pc_offset, | |
3667 | stretch)) | |
3668 | { | |
3669 | if (steps_taken >= min_steps) | |
3670 | { | |
3671 | istack_push (istack, ¤t_insn); | |
3672 | return steps_taken; | |
3673 | } | |
3674 | } | |
3675 | steps_taken++; | |
3676 | if (xg_expand_to_stack (istack, ¤t_insn, lateral_steps)) | |
3677 | { | |
3678 | if (steps_taken >= min_steps) | |
3679 | return steps_taken; | |
3680 | } | |
3681 | lateral_steps++; | |
3682 | istack->ninsn = istack_size; | |
3683 | } | |
3684 | ||
3685 | /* It's not going to work -- use the original. */ | |
3686 | istack_push (istack, insn); | |
3687 | return steps_taken; | |
3688 | } | |
3689 | ||
3690 | ||
7fa3d080 BW |
3691 | static void |
3692 | xg_finish_frag (char *last_insn, | |
3693 | enum xtensa_relax_statesE frag_state, | |
3694 | enum xtensa_relax_statesE slot0_state, | |
3695 | int max_growth, | |
3696 | bfd_boolean is_insn) | |
e0001a05 NC |
3697 | { |
3698 | /* Finish off this fragment so that it has at LEAST the desired | |
3699 | max_growth. If it doesn't fit in this fragment, close this one | |
3700 | and start a new one. In either case, return a pointer to the | |
3701 | beginning of the growth area. */ | |
3702 | ||
3703 | fragS *old_frag; | |
43cd72b9 | 3704 | |
542f8b94 | 3705 | frag_grow (max_growth); |
e0001a05 NC |
3706 | old_frag = frag_now; |
3707 | ||
3708 | frag_now->fr_opcode = last_insn; | |
3709 | if (is_insn) | |
3710 | frag_now->tc_frag_data.is_insn = TRUE; | |
3711 | ||
3712 | frag_var (rs_machine_dependent, max_growth, max_growth, | |
43cd72b9 BW |
3713 | frag_state, frag_now->fr_symbol, frag_now->fr_offset, last_insn); |
3714 | ||
3715 | old_frag->tc_frag_data.slot_subtypes[0] = slot0_state; | |
3716 | xtensa_set_frag_assembly_state (frag_now); | |
e0001a05 NC |
3717 | |
3718 | /* Just to make sure that we did not split it up. */ | |
9c2799c2 | 3719 | gas_assert (old_frag->fr_next == frag_now); |
e0001a05 NC |
3720 | } |
3721 | ||
3722 | ||
7fa3d080 BW |
3723 | /* Return TRUE if the target frag is one of the next non-empty frags. */ |
3724 | ||
3725 | static bfd_boolean | |
3726 | is_next_frag_target (const fragS *fragP, const fragS *target) | |
3727 | { | |
3728 | if (fragP == NULL) | |
3729 | return FALSE; | |
3730 | ||
3731 | for (; fragP; fragP = fragP->fr_next) | |
3732 | { | |
3733 | if (fragP == target) | |
3734 | return TRUE; | |
3735 | if (fragP->fr_fix != 0) | |
3736 | return FALSE; | |
3737 | if (fragP->fr_type == rs_fill && fragP->fr_offset != 0) | |
3738 | return FALSE; | |
3739 | if ((fragP->fr_type == rs_align || fragP->fr_type == rs_align_code) | |
3740 | && ((fragP->fr_address % (1 << fragP->fr_offset)) != 0)) | |
3741 | return FALSE; | |
3742 | if (fragP->fr_type == rs_space) | |
3743 | return FALSE; | |
3744 | } | |
3745 | return FALSE; | |
3746 | } | |
3747 | ||
3748 | ||
e0001a05 | 3749 | static bfd_boolean |
7fa3d080 | 3750 | is_branch_jmp_to_next (TInsn *insn, fragS *fragP) |
e0001a05 NC |
3751 | { |
3752 | xtensa_isa isa = xtensa_default_isa; | |
3753 | int i; | |
43cd72b9 | 3754 | int num_ops = xtensa_opcode_num_operands (isa, insn->opcode); |
e0001a05 NC |
3755 | int target_op = -1; |
3756 | symbolS *sym; | |
3757 | fragS *target_frag; | |
3758 | ||
64b607e6 BW |
3759 | if (xtensa_opcode_is_branch (isa, insn->opcode) != 1 |
3760 | && xtensa_opcode_is_jump (isa, insn->opcode) != 1) | |
e0001a05 NC |
3761 | return FALSE; |
3762 | ||
3763 | for (i = 0; i < num_ops; i++) | |
3764 | { | |
43cd72b9 | 3765 | if (xtensa_operand_is_PCrelative (isa, insn->opcode, i) == 1) |
e0001a05 NC |
3766 | { |
3767 | target_op = i; | |
3768 | break; | |
3769 | } | |
3770 | } | |
3771 | if (target_op == -1) | |
3772 | return FALSE; | |
3773 | ||
3774 | if (insn->ntok <= target_op) | |
3775 | return FALSE; | |
3776 | ||
3777 | if (insn->tok[target_op].X_op != O_symbol) | |
3778 | return FALSE; | |
3779 | ||
3780 | sym = insn->tok[target_op].X_add_symbol; | |
3781 | if (sym == NULL) | |
3782 | return FALSE; | |
3783 | ||
3784 | if (insn->tok[target_op].X_add_number != 0) | |
3785 | return FALSE; | |
3786 | ||
3787 | target_frag = symbol_get_frag (sym); | |
3788 | if (target_frag == NULL) | |
3789 | return FALSE; | |
3790 | ||
c138bc38 | 3791 | if (is_next_frag_target (fragP->fr_next, target_frag) |
e0001a05 NC |
3792 | && S_GET_VALUE (sym) == target_frag->fr_address) |
3793 | return TRUE; | |
3794 | ||
3795 | return FALSE; | |
3796 | } | |
3797 | ||
3798 | ||
3799 | static void | |
7fa3d080 | 3800 | xg_add_branch_and_loop_targets (TInsn *insn) |
e0001a05 NC |
3801 | { |
3802 | xtensa_isa isa = xtensa_default_isa; | |
7fa3d080 | 3803 | int num_ops = xtensa_opcode_num_operands (isa, insn->opcode); |
43cd72b9 | 3804 | |
7fa3d080 BW |
3805 | if (xtensa_opcode_is_loop (isa, insn->opcode) == 1) |
3806 | { | |
3807 | int i = 1; | |
3808 | if (xtensa_operand_is_PCrelative (isa, insn->opcode, i) == 1 | |
3809 | && insn->tok[i].X_op == O_symbol) | |
3810 | symbol_get_tc (insn->tok[i].X_add_symbol)->is_loop_target = TRUE; | |
3811 | return; | |
3812 | } | |
e0001a05 | 3813 | |
7fa3d080 BW |
3814 | if (xtensa_opcode_is_branch (isa, insn->opcode) == 1 |
3815 | || xtensa_opcode_is_loop (isa, insn->opcode) == 1) | |
e0001a05 | 3816 | { |
7fa3d080 BW |
3817 | int i; |
3818 | ||
3819 | for (i = 0; i < insn->ntok && i < num_ops; i++) | |
3820 | { | |
3821 | if (xtensa_operand_is_PCrelative (isa, insn->opcode, i) == 1 | |
3822 | && insn->tok[i].X_op == O_symbol) | |
3823 | { | |
3824 | symbolS *sym = insn->tok[i].X_add_symbol; | |
3825 | symbol_get_tc (sym)->is_branch_target = TRUE; | |
3826 | if (S_IS_DEFINED (sym)) | |
3827 | symbol_get_frag (sym)->tc_frag_data.is_branch_target = TRUE; | |
3828 | } | |
3829 | } | |
e0001a05 | 3830 | } |
e0001a05 NC |
3831 | } |
3832 | ||
3833 | ||
43cd72b9 | 3834 | /* Return FALSE if no error. */ |
e0001a05 | 3835 | |
7fa3d080 BW |
3836 | static bfd_boolean |
3837 | xg_build_token_insn (BuildInstr *instr_spec, TInsn *old_insn, TInsn *new_insn) | |
e0001a05 NC |
3838 | { |
3839 | int num_ops = 0; | |
3840 | BuildOp *b_op; | |
3841 | ||
3842 | switch (instr_spec->typ) | |
3843 | { | |
3844 | case INSTR_INSTR: | |
3845 | new_insn->insn_type = ITYPE_INSN; | |
3846 | new_insn->opcode = instr_spec->opcode; | |
e0001a05 NC |
3847 | break; |
3848 | case INSTR_LITERAL_DEF: | |
3849 | new_insn->insn_type = ITYPE_LITERAL; | |
3850 | new_insn->opcode = XTENSA_UNDEFINED; | |
e0001a05 NC |
3851 | break; |
3852 | case INSTR_LABEL_DEF: | |
b224e962 | 3853 | abort (); |
e0001a05 | 3854 | } |
b224e962 BW |
3855 | new_insn->is_specific_opcode = FALSE; |
3856 | new_insn->debug_line = old_insn->debug_line; | |
3857 | new_insn->loc_directive_seen = old_insn->loc_directive_seen; | |
e0001a05 NC |
3858 | |
3859 | for (b_op = instr_spec->ops; b_op != NULL; b_op = b_op->next) | |
3860 | { | |
3861 | expressionS *exp; | |
3862 | const expressionS *src_exp; | |
3863 | ||
3864 | num_ops++; | |
3865 | switch (b_op->typ) | |
3866 | { | |
3867 | case OP_CONSTANT: | |
3868 | /* The expression must be the constant. */ | |
9c2799c2 | 3869 | gas_assert (b_op->op_num < MAX_INSN_ARGS); |
e0001a05 NC |
3870 | exp = &new_insn->tok[b_op->op_num]; |
3871 | set_expr_const (exp, b_op->op_data); | |
3872 | break; | |
3873 | ||
3874 | case OP_OPERAND: | |
9c2799c2 NC |
3875 | gas_assert (b_op->op_num < MAX_INSN_ARGS); |
3876 | gas_assert (b_op->op_data < (unsigned) old_insn->ntok); | |
e0001a05 NC |
3877 | src_exp = &old_insn->tok[b_op->op_data]; |
3878 | exp = &new_insn->tok[b_op->op_num]; | |
3879 | copy_expr (exp, src_exp); | |
3880 | break; | |
3881 | ||
3882 | case OP_LITERAL: | |
3883 | case OP_LABEL: | |
3884 | as_bad (_("can't handle generation of literal/labels yet")); | |
9c2799c2 | 3885 | gas_assert (0); |
e0001a05 NC |
3886 | |
3887 | default: | |
3888 | as_bad (_("can't handle undefined OP TYPE")); | |
9c2799c2 | 3889 | gas_assert (0); |
e0001a05 NC |
3890 | } |
3891 | } | |
3892 | ||
3893 | new_insn->ntok = num_ops; | |
3894 | return FALSE; | |
3895 | } | |
3896 | ||
3897 | ||
43cd72b9 | 3898 | /* Return TRUE if it was simplified. */ |
e0001a05 | 3899 | |
7fa3d080 BW |
3900 | static bfd_boolean |
3901 | xg_simplify_insn (TInsn *old_insn, TInsn *new_insn) | |
e0001a05 | 3902 | { |
43cd72b9 | 3903 | TransitionRule *rule; |
e0001a05 | 3904 | BuildInstr *insn_spec; |
43cd72b9 BW |
3905 | |
3906 | if (old_insn->is_specific_opcode || !density_supported) | |
3907 | return FALSE; | |
3908 | ||
3909 | rule = xg_instruction_match (old_insn); | |
e0001a05 NC |
3910 | if (rule == NULL) |
3911 | return FALSE; | |
3912 | ||
3913 | insn_spec = rule->to_instr; | |
3914 | /* There should only be one. */ | |
9c2799c2 NC |
3915 | gas_assert (insn_spec != NULL); |
3916 | gas_assert (insn_spec->next == NULL); | |
e0001a05 NC |
3917 | if (insn_spec->next != NULL) |
3918 | return FALSE; | |
3919 | ||
3920 | xg_build_token_insn (insn_spec, old_insn, new_insn); | |
3921 | ||
3922 | return TRUE; | |
3923 | } | |
3924 | ||
3925 | ||
3926 | /* xg_expand_assembly_insn: (1) Simplify the instruction, i.e., l32i -> | |
3927 | l32i.n. (2) Check the number of operands. (3) Place the instruction | |
7c834684 BW |
3928 | tokens into the stack or relax it and place multiple |
3929 | instructions/literals onto the stack. Return FALSE if no error. */ | |
e0001a05 NC |
3930 | |
3931 | static bfd_boolean | |
7fa3d080 | 3932 | xg_expand_assembly_insn (IStack *istack, TInsn *orig_insn) |
e0001a05 NC |
3933 | { |
3934 | int noperands; | |
3935 | TInsn new_insn; | |
7c834684 BW |
3936 | bfd_boolean do_expand; |
3937 | ||
60242db2 | 3938 | tinsn_init (&new_insn); |
e0001a05 | 3939 | |
43cd72b9 BW |
3940 | /* Narrow it if we can. xg_simplify_insn now does all the |
3941 | appropriate checking (e.g., for the density option). */ | |
3942 | if (xg_simplify_insn (orig_insn, &new_insn)) | |
3943 | orig_insn = &new_insn; | |
e0001a05 | 3944 | |
43cd72b9 BW |
3945 | noperands = xtensa_opcode_num_operands (xtensa_default_isa, |
3946 | orig_insn->opcode); | |
e0001a05 NC |
3947 | if (orig_insn->ntok < noperands) |
3948 | { | |
3949 | as_bad (_("found %d operands for '%s': Expected %d"), | |
3950 | orig_insn->ntok, | |
3951 | xtensa_opcode_name (xtensa_default_isa, orig_insn->opcode), | |
3952 | noperands); | |
3953 | return TRUE; | |
3954 | } | |
3955 | if (orig_insn->ntok > noperands) | |
3956 | as_warn (_("found too many (%d) operands for '%s': Expected %d"), | |
3957 | orig_insn->ntok, | |
3958 | xtensa_opcode_name (xtensa_default_isa, orig_insn->opcode), | |
3959 | noperands); | |
3960 | ||
43cd72b9 | 3961 | /* If there are not enough operands, we will assert above. If there |
e0001a05 | 3962 | are too many, just cut out the extras here. */ |
e0001a05 NC |
3963 | orig_insn->ntok = noperands; |
3964 | ||
e0001a05 NC |
3965 | if (tinsn_has_invalid_symbolic_operands (orig_insn)) |
3966 | return TRUE; | |
3967 | ||
d12f9798 BW |
3968 | /* Special case for extui opcode which has constraints not handled |
3969 | by the ordinary operand encoding checks. The number of operands | |
3970 | and related syntax issues have already been checked. */ | |
3971 | if (orig_insn->opcode == xtensa_extui_opcode) | |
3972 | { | |
3973 | int shiftimm = orig_insn->tok[2].X_add_number; | |
3974 | int maskimm = orig_insn->tok[3].X_add_number; | |
3975 | if (shiftimm + maskimm > 32) | |
3976 | { | |
3977 | as_bad (_("immediate operands sum to greater than 32")); | |
3978 | return TRUE; | |
3979 | } | |
3980 | } | |
3981 | ||
7c834684 BW |
3982 | /* If the instruction will definitely need to be relaxed, it is better |
3983 | to expand it now for better scheduling. Decide whether to expand | |
3984 | now.... */ | |
3985 | do_expand = (!orig_insn->is_specific_opcode && use_transform ()); | |
3986 | ||
3987 | /* Calls should be expanded to longcalls only in the backend relaxation | |
3988 | so that the assembly scheduler will keep the L32R/CALLX instructions | |
3989 | adjacent. */ | |
3990 | if (is_direct_call_opcode (orig_insn->opcode)) | |
3991 | do_expand = FALSE; | |
e0001a05 NC |
3992 | |
3993 | if (tinsn_has_symbolic_operands (orig_insn)) | |
3994 | { | |
7c834684 BW |
3995 | /* The values of symbolic operands are not known yet, so only expand |
3996 | now if an operand is "complex" (e.g., difference of symbols) and | |
3997 | will have to be stored as a literal regardless of the value. */ | |
3998 | if (!tinsn_has_complex_operands (orig_insn)) | |
3999 | do_expand = FALSE; | |
e0001a05 | 4000 | } |
7c834684 BW |
4001 | else if (xg_immeds_fit (orig_insn)) |
4002 | do_expand = FALSE; | |
4003 | ||
4004 | if (do_expand) | |
4005 | xg_assembly_relax (istack, orig_insn, 0, 0, 0, 0, 0); | |
e0001a05 | 4006 | else |
7c834684 | 4007 | istack_push (istack, orig_insn); |
e0001a05 | 4008 | |
e0001a05 NC |
4009 | return FALSE; |
4010 | } | |
4011 | ||
4012 | ||
7fa3d080 | 4013 | /* Return TRUE if the section flags are marked linkonce |
74869ac7 BW |
4014 | or the name is .gnu.linkonce.*. */ |
4015 | ||
4016 | static int linkonce_len = sizeof (".gnu.linkonce.") - 1; | |
7fa3d080 BW |
4017 | |
4018 | static bfd_boolean | |
4019 | get_is_linkonce_section (bfd *abfd ATTRIBUTE_UNUSED, segT sec) | |
4020 | { | |
4021 | flagword flags, link_once_flags; | |
4022 | ||
4023 | flags = bfd_get_section_flags (abfd, sec); | |
4024 | link_once_flags = (flags & SEC_LINK_ONCE); | |
4025 | ||
4026 | /* Flags might not be set yet. */ | |
74869ac7 BW |
4027 | if (!link_once_flags |
4028 | && strncmp (segment_name (sec), ".gnu.linkonce.", linkonce_len) == 0) | |
4029 | link_once_flags = SEC_LINK_ONCE; | |
7fa3d080 | 4030 | |
7fa3d080 BW |
4031 | return (link_once_flags != 0); |
4032 | } | |
4033 | ||
4034 | ||
4035 | static void | |
4036 | xtensa_add_literal_sym (symbolS *sym) | |
4037 | { | |
4038 | sym_list *l; | |
4039 | ||
4040 | l = (sym_list *) xmalloc (sizeof (sym_list)); | |
4041 | l->sym = sym; | |
4042 | l->next = literal_syms; | |
4043 | literal_syms = l; | |
4044 | } | |
4045 | ||
4046 | ||
4047 | static symbolS * | |
4048 | xtensa_create_literal_symbol (segT sec, fragS *frag) | |
4049 | { | |
4050 | static int lit_num = 0; | |
4051 | static char name[256]; | |
4052 | symbolS *symbolP; | |
4053 | ||
4054 | sprintf (name, ".L_lit_sym%d", lit_num); | |
4055 | ||
4056 | /* Create a local symbol. If it is in a linkonce section, we have to | |
4057 | be careful to make sure that if it is used in a relocation that the | |
4058 | symbol will be in the output file. */ | |
4059 | if (get_is_linkonce_section (stdoutput, sec)) | |
4060 | { | |
4061 | symbolP = symbol_new (name, sec, 0, frag); | |
4062 | S_CLEAR_EXTERNAL (symbolP); | |
4063 | /* symbolP->local = 1; */ | |
4064 | } | |
4065 | else | |
4066 | symbolP = symbol_new (name, sec, 0, frag); | |
4067 | ||
4068 | xtensa_add_literal_sym (symbolP); | |
4069 | ||
7fa3d080 BW |
4070 | lit_num++; |
4071 | return symbolP; | |
4072 | } | |
4073 | ||
4074 | ||
e0001a05 NC |
4075 | /* Currently all literals that are generated here are 32-bit L32R targets. */ |
4076 | ||
7fa3d080 BW |
4077 | static symbolS * |
4078 | xg_assemble_literal (/* const */ TInsn *insn) | |
e0001a05 NC |
4079 | { |
4080 | emit_state state; | |
4081 | symbolS *lit_sym = NULL; | |
bbdd25a8 | 4082 | bfd_reloc_code_real_type reloc; |
1bbb5f21 | 4083 | bfd_boolean pcrel = FALSE; |
bbdd25a8 | 4084 | char *p; |
e0001a05 NC |
4085 | |
4086 | /* size = 4 for L32R. It could easily be larger when we move to | |
4087 | larger constants. Add a parameter later. */ | |
4088 | offsetT litsize = 4; | |
4089 | offsetT litalign = 2; /* 2^2 = 4 */ | |
4090 | expressionS saved_loc; | |
43cd72b9 BW |
4091 | expressionS * emit_val; |
4092 | ||
e0001a05 NC |
4093 | set_expr_symbol_offset (&saved_loc, frag_now->fr_symbol, frag_now_fix ()); |
4094 | ||
9c2799c2 NC |
4095 | gas_assert (insn->insn_type == ITYPE_LITERAL); |
4096 | gas_assert (insn->ntok == 1); /* must be only one token here */ | |
e0001a05 NC |
4097 | |
4098 | xtensa_switch_to_literal_fragment (&state); | |
4099 | ||
43cd72b9 BW |
4100 | emit_val = &insn->tok[0]; |
4101 | if (emit_val->X_op == O_big) | |
4102 | { | |
4103 | int size = emit_val->X_add_number * CHARS_PER_LITTLENUM; | |
4104 | if (size > litsize) | |
4105 | { | |
4106 | /* This happens when someone writes a "movi a2, big_number". */ | |
c138bc38 | 4107 | as_bad_where (frag_now->fr_file, frag_now->fr_line, |
43cd72b9 BW |
4108 | _("invalid immediate")); |
4109 | xtensa_restore_emit_state (&state); | |
4110 | return NULL; | |
4111 | } | |
4112 | } | |
4113 | ||
e0001a05 NC |
4114 | /* Force a 4-byte align here. Note that this opens a new frag, so all |
4115 | literals done with this function have a frag to themselves. That's | |
4116 | important for the way text section literals work. */ | |
4117 | frag_align (litalign, 0, 0); | |
43cd72b9 | 4118 | record_alignment (now_seg, litalign); |
e0001a05 | 4119 | |
bbdd25a8 | 4120 | switch (emit_val->X_op) |
43cd72b9 | 4121 | { |
1bbb5f21 BW |
4122 | case O_pcrel: |
4123 | pcrel = TRUE; | |
4124 | /* fall through */ | |
bbdd25a8 | 4125 | case O_pltrel: |
28dbbc02 BW |
4126 | case O_tlsfunc: |
4127 | case O_tlsarg: | |
4128 | case O_tpoff: | |
4129 | case O_dtpoff: | |
bbdd25a8 | 4130 | p = frag_more (litsize); |
43cd72b9 | 4131 | xtensa_set_frag_assembly_state (frag_now); |
28dbbc02 | 4132 | reloc = map_operator_to_reloc (emit_val->X_op, TRUE); |
43cd72b9 BW |
4133 | if (emit_val->X_add_symbol) |
4134 | emit_val->X_op = O_symbol; | |
4135 | else | |
4136 | emit_val->X_op = O_constant; | |
4137 | fix_new_exp (frag_now, p - frag_now->fr_literal, | |
1bbb5f21 | 4138 | litsize, emit_val, pcrel, reloc); |
bbdd25a8 BW |
4139 | break; |
4140 | ||
4141 | default: | |
4142 | emit_expr (emit_val, litsize); | |
4143 | break; | |
43cd72b9 | 4144 | } |
e0001a05 | 4145 | |
9c2799c2 | 4146 | gas_assert (frag_now->tc_frag_data.literal_frag == NULL); |
e0001a05 NC |
4147 | frag_now->tc_frag_data.literal_frag = get_literal_pool_location (now_seg); |
4148 | frag_now->fr_symbol = xtensa_create_literal_symbol (now_seg, frag_now); | |
4149 | lit_sym = frag_now->fr_symbol; | |
e0001a05 NC |
4150 | |
4151 | /* Go back. */ | |
4152 | xtensa_restore_emit_state (&state); | |
4153 | return lit_sym; | |
4154 | } | |
4155 | ||
4156 | ||
4157 | static void | |
7fa3d080 | 4158 | xg_assemble_literal_space (/* const */ int size, int slot) |
e0001a05 NC |
4159 | { |
4160 | emit_state state; | |
43cd72b9 | 4161 | /* We might have to do something about this alignment. It only |
e0001a05 NC |
4162 | takes effect if something is placed here. */ |
4163 | offsetT litalign = 2; /* 2^2 = 4 */ | |
4164 | fragS *lit_saved_frag; | |
4165 | ||
9c2799c2 | 4166 | gas_assert (size % 4 == 0); |
e0001a05 NC |
4167 | |
4168 | xtensa_switch_to_literal_fragment (&state); | |
4169 | ||
4170 | /* Force a 4-byte align here. */ | |
4171 | frag_align (litalign, 0, 0); | |
43cd72b9 | 4172 | record_alignment (now_seg, litalign); |
e0001a05 | 4173 | |
542f8b94 | 4174 | frag_grow (size); |
e0001a05 NC |
4175 | |
4176 | lit_saved_frag = frag_now; | |
4177 | frag_now->tc_frag_data.literal_frag = get_literal_pool_location (now_seg); | |
e0001a05 | 4178 | frag_now->fr_symbol = xtensa_create_literal_symbol (now_seg, frag_now); |
43cd72b9 | 4179 | xg_finish_frag (0, RELAX_LITERAL, 0, size, FALSE); |
e0001a05 NC |
4180 | |
4181 | /* Go back. */ | |
4182 | xtensa_restore_emit_state (&state); | |
43cd72b9 | 4183 | frag_now->tc_frag_data.literal_frags[slot] = lit_saved_frag; |
e0001a05 NC |
4184 | } |
4185 | ||
4186 | ||
e0001a05 | 4187 | /* Put in a fixup record based on the opcode. |
43cd72b9 | 4188 | Return TRUE on success. */ |
e0001a05 | 4189 | |
7fa3d080 BW |
4190 | static bfd_boolean |
4191 | xg_add_opcode_fix (TInsn *tinsn, | |
4192 | int opnum, | |
4193 | xtensa_format fmt, | |
4194 | int slot, | |
91d6fa6a | 4195 | expressionS *exp, |
7fa3d080 BW |
4196 | fragS *fragP, |
4197 | offsetT offset) | |
43cd72b9 BW |
4198 | { |
4199 | xtensa_opcode opcode = tinsn->opcode; | |
4200 | bfd_reloc_code_real_type reloc; | |
4201 | reloc_howto_type *howto; | |
4202 | int fmt_length; | |
e0001a05 NC |
4203 | fixS *the_fix; |
4204 | ||
43cd72b9 BW |
4205 | reloc = BFD_RELOC_NONE; |
4206 | ||
4207 | /* First try the special cases for "alternate" relocs. */ | |
4208 | if (opcode == xtensa_l32r_opcode) | |
4209 | { | |
4210 | if (fragP->tc_frag_data.use_absolute_literals) | |
4211 | reloc = encode_alt_reloc (slot); | |
4212 | } | |
4213 | else if (opcode == xtensa_const16_opcode) | |
4214 | { | |
91d6fa6a | 4215 | if (exp->X_op == O_lo16) |
43cd72b9 BW |
4216 | { |
4217 | reloc = encode_reloc (slot); | |
91d6fa6a | 4218 | exp->X_op = O_symbol; |
43cd72b9 | 4219 | } |
91d6fa6a | 4220 | else if (exp->X_op == O_hi16) |
43cd72b9 BW |
4221 | { |
4222 | reloc = encode_alt_reloc (slot); | |
91d6fa6a | 4223 | exp->X_op = O_symbol; |
43cd72b9 BW |
4224 | } |
4225 | } | |
4226 | ||
4227 | if (opnum != get_relaxable_immed (opcode)) | |
e0001a05 | 4228 | { |
43cd72b9 | 4229 | as_bad (_("invalid relocation for operand %i of '%s'"), |
431ad2d0 | 4230 | opnum + 1, xtensa_opcode_name (xtensa_default_isa, opcode)); |
e0001a05 NC |
4231 | return FALSE; |
4232 | } | |
4233 | ||
43cd72b9 BW |
4234 | /* Handle erroneous "@h" and "@l" expressions here before they propagate |
4235 | into the symbol table where the generic portions of the assembler | |
4236 | won't know what to do with them. */ | |
91d6fa6a | 4237 | if (exp->X_op == O_lo16 || exp->X_op == O_hi16) |
43cd72b9 BW |
4238 | { |
4239 | as_bad (_("invalid expression for operand %i of '%s'"), | |
431ad2d0 | 4240 | opnum + 1, xtensa_opcode_name (xtensa_default_isa, opcode)); |
43cd72b9 BW |
4241 | return FALSE; |
4242 | } | |
4243 | ||
4244 | /* Next try the generic relocs. */ | |
4245 | if (reloc == BFD_RELOC_NONE) | |
4246 | reloc = encode_reloc (slot); | |
4247 | if (reloc == BFD_RELOC_NONE) | |
4248 | { | |
4249 | as_bad (_("invalid relocation in instruction slot %i"), slot); | |
4250 | return FALSE; | |
4251 | } | |
e0001a05 | 4252 | |
43cd72b9 | 4253 | howto = bfd_reloc_type_lookup (stdoutput, reloc); |
e0001a05 NC |
4254 | if (!howto) |
4255 | { | |
43cd72b9 | 4256 | as_bad (_("undefined symbol for opcode \"%s\""), |
e0001a05 NC |
4257 | xtensa_opcode_name (xtensa_default_isa, opcode)); |
4258 | return FALSE; | |
4259 | } | |
4260 | ||
43cd72b9 | 4261 | fmt_length = xtensa_format_length (xtensa_default_isa, fmt); |
91d6fa6a | 4262 | the_fix = fix_new_exp (fragP, offset, fmt_length, exp, |
e0001a05 | 4263 | howto->pc_relative, reloc); |
d9740523 | 4264 | the_fix->fx_no_overflow = 1; |
91d6fa6a NC |
4265 | the_fix->tc_fix_data.X_add_symbol = exp->X_add_symbol; |
4266 | the_fix->tc_fix_data.X_add_number = exp->X_add_number; | |
7fa3d080 | 4267 | the_fix->tc_fix_data.slot = slot; |
c138bc38 | 4268 | |
7fa3d080 BW |
4269 | return TRUE; |
4270 | } | |
4271 | ||
4272 | ||
4273 | static bfd_boolean | |
4274 | xg_emit_insn_to_buf (TInsn *tinsn, | |
7fa3d080 BW |
4275 | char *buf, |
4276 | fragS *fragP, | |
4277 | offsetT offset, | |
4278 | bfd_boolean build_fix) | |
4279 | { | |
4280 | static xtensa_insnbuf insnbuf = NULL; | |
4281 | bfd_boolean has_symbolic_immed = FALSE; | |
4282 | bfd_boolean ok = TRUE; | |
b2d179be | 4283 | |
7fa3d080 BW |
4284 | if (!insnbuf) |
4285 | insnbuf = xtensa_insnbuf_alloc (xtensa_default_isa); | |
4286 | ||
4287 | has_symbolic_immed = tinsn_to_insnbuf (tinsn, insnbuf); | |
4288 | if (has_symbolic_immed && build_fix) | |
4289 | { | |
4290 | /* Add a fixup. */ | |
b2d179be BW |
4291 | xtensa_format fmt = xg_get_single_format (tinsn->opcode); |
4292 | int slot = xg_get_single_slot (tinsn->opcode); | |
7fa3d080 BW |
4293 | int opnum = get_relaxable_immed (tinsn->opcode); |
4294 | expressionS *exp = &tinsn->tok[opnum]; | |
43cd72b9 | 4295 | |
b2d179be | 4296 | if (!xg_add_opcode_fix (tinsn, opnum, fmt, slot, exp, fragP, offset)) |
7fa3d080 BW |
4297 | ok = FALSE; |
4298 | } | |
4299 | fragP->tc_frag_data.is_insn = TRUE; | |
d77b99c9 BW |
4300 | xtensa_insnbuf_to_chars (xtensa_default_isa, insnbuf, |
4301 | (unsigned char *) buf, 0); | |
7fa3d080 | 4302 | return ok; |
e0001a05 NC |
4303 | } |
4304 | ||
4305 | ||
7fa3d080 BW |
4306 | static void |
4307 | xg_resolve_literals (TInsn *insn, symbolS *lit_sym) | |
e0001a05 NC |
4308 | { |
4309 | symbolS *sym = get_special_literal_symbol (); | |
4310 | int i; | |
4311 | if (lit_sym == 0) | |
4312 | return; | |
9c2799c2 | 4313 | gas_assert (insn->insn_type == ITYPE_INSN); |
e0001a05 NC |
4314 | for (i = 0; i < insn->ntok; i++) |
4315 | if (insn->tok[i].X_add_symbol == sym) | |
4316 | insn->tok[i].X_add_symbol = lit_sym; | |
4317 | ||
4318 | } | |
4319 | ||
4320 | ||
7fa3d080 BW |
4321 | static void |
4322 | xg_resolve_labels (TInsn *insn, symbolS *label_sym) | |
e0001a05 NC |
4323 | { |
4324 | symbolS *sym = get_special_label_symbol (); | |
4325 | int i; | |
e0001a05 NC |
4326 | for (i = 0; i < insn->ntok; i++) |
4327 | if (insn->tok[i].X_add_symbol == sym) | |
4328 | insn->tok[i].X_add_symbol = label_sym; | |
4329 | ||
4330 | } | |
4331 | ||
4332 | ||
43cd72b9 | 4333 | /* Return TRUE if the instruction can write to the specified |
e0001a05 NC |
4334 | integer register. */ |
4335 | ||
4336 | static bfd_boolean | |
7fa3d080 | 4337 | is_register_writer (const TInsn *insn, const char *regset, int regnum) |
e0001a05 NC |
4338 | { |
4339 | int i; | |
4340 | int num_ops; | |
4341 | xtensa_isa isa = xtensa_default_isa; | |
4342 | ||
43cd72b9 | 4343 | num_ops = xtensa_opcode_num_operands (isa, insn->opcode); |
e0001a05 NC |
4344 | |
4345 | for (i = 0; i < num_ops; i++) | |
4346 | { | |
43cd72b9 BW |
4347 | char inout; |
4348 | inout = xtensa_operand_inout (isa, insn->opcode, i); | |
4349 | if ((inout == 'o' || inout == 'm') | |
4350 | && xtensa_operand_is_register (isa, insn->opcode, i) == 1) | |
e0001a05 | 4351 | { |
43cd72b9 BW |
4352 | xtensa_regfile opnd_rf = |
4353 | xtensa_operand_regfile (isa, insn->opcode, i); | |
4354 | if (!strcmp (xtensa_regfile_shortname (isa, opnd_rf), regset)) | |
e0001a05 NC |
4355 | { |
4356 | if ((insn->tok[i].X_op == O_register) | |
4357 | && (insn->tok[i].X_add_number == regnum)) | |
4358 | return TRUE; | |
4359 | } | |
4360 | } | |
4361 | } | |
4362 | return FALSE; | |
4363 | } | |
4364 | ||
4365 | ||
4366 | static bfd_boolean | |
7fa3d080 | 4367 | is_bad_loopend_opcode (const TInsn *tinsn) |
e0001a05 NC |
4368 | { |
4369 | xtensa_opcode opcode = tinsn->opcode; | |
4370 | ||
4371 | if (opcode == XTENSA_UNDEFINED) | |
4372 | return FALSE; | |
4373 | ||
4374 | if (opcode == xtensa_call0_opcode | |
4375 | || opcode == xtensa_callx0_opcode | |
4376 | || opcode == xtensa_call4_opcode | |
4377 | || opcode == xtensa_callx4_opcode | |
4378 | || opcode == xtensa_call8_opcode | |
4379 | || opcode == xtensa_callx8_opcode | |
4380 | || opcode == xtensa_call12_opcode | |
4381 | || opcode == xtensa_callx12_opcode | |
4382 | || opcode == xtensa_isync_opcode | |
4383 | || opcode == xtensa_ret_opcode | |
4384 | || opcode == xtensa_ret_n_opcode | |
4385 | || opcode == xtensa_retw_opcode | |
4386 | || opcode == xtensa_retw_n_opcode | |
43cd72b9 BW |
4387 | || opcode == xtensa_waiti_opcode |
4388 | || opcode == xtensa_rsr_lcount_opcode) | |
e0001a05 | 4389 | return TRUE; |
c138bc38 | 4390 | |
e0001a05 NC |
4391 | return FALSE; |
4392 | } | |
4393 | ||
4394 | ||
4395 | /* Labels that begin with ".Ln" or ".LM" are unaligned. | |
4396 | This allows the debugger to add unaligned labels. | |
4397 | Also, the assembler generates stabs labels that need | |
4398 | not be aligned: FAKE_LABEL_NAME . {"F", "L", "endfunc"}. */ | |
4399 | ||
7fa3d080 BW |
4400 | static bfd_boolean |
4401 | is_unaligned_label (symbolS *sym) | |
e0001a05 NC |
4402 | { |
4403 | const char *name = S_GET_NAME (sym); | |
4404 | static size_t fake_size = 0; | |
4405 | ||
4406 | if (name | |
4407 | && name[0] == '.' | |
4408 | && name[1] == 'L' && (name[2] == 'n' || name[2] == 'M')) | |
4409 | return TRUE; | |
4410 | ||
4411 | /* FAKE_LABEL_NAME followed by "F", "L" or "endfunc" */ | |
4412 | if (fake_size == 0) | |
4413 | fake_size = strlen (FAKE_LABEL_NAME); | |
4414 | ||
43cd72b9 | 4415 | if (name |
e0001a05 NC |
4416 | && strncmp (FAKE_LABEL_NAME, name, fake_size) == 0 |
4417 | && (name[fake_size] == 'F' | |
4418 | || name[fake_size] == 'L' | |
4419 | || (name[fake_size] == 'e' | |
4420 | && strncmp ("endfunc", name+fake_size, 7) == 0))) | |
4421 | return TRUE; | |
4422 | ||
4423 | return FALSE; | |
4424 | } | |
4425 | ||
4426 | ||
7fa3d080 BW |
4427 | static fragS * |
4428 | next_non_empty_frag (const fragS *fragP) | |
e0001a05 NC |
4429 | { |
4430 | fragS *next_fragP = fragP->fr_next; | |
4431 | ||
c138bc38 | 4432 | /* Sometimes an empty will end up here due storage allocation issues. |
e0001a05 NC |
4433 | So we have to skip until we find something legit. */ |
4434 | while (next_fragP && next_fragP->fr_fix == 0) | |
4435 | next_fragP = next_fragP->fr_next; | |
4436 | ||
4437 | if (next_fragP == NULL || next_fragP->fr_fix == 0) | |
4438 | return NULL; | |
4439 | ||
4440 | return next_fragP; | |
4441 | } | |
4442 | ||
4443 | ||
43cd72b9 | 4444 | static bfd_boolean |
7fa3d080 | 4445 | next_frag_opcode_is_loop (const fragS *fragP, xtensa_opcode *opcode) |
43cd72b9 BW |
4446 | { |
4447 | xtensa_opcode out_opcode; | |
4448 | const fragS *next_fragP = next_non_empty_frag (fragP); | |
4449 | ||
4450 | if (next_fragP == NULL) | |
4451 | return FALSE; | |
4452 | ||
4453 | out_opcode = get_opcode_from_buf (next_fragP->fr_literal, 0); | |
4454 | if (xtensa_opcode_is_loop (xtensa_default_isa, out_opcode) == 1) | |
4455 | { | |
4456 | *opcode = out_opcode; | |
4457 | return TRUE; | |
4458 | } | |
4459 | return FALSE; | |
4460 | } | |
4461 | ||
4462 | ||
4463 | static int | |
7fa3d080 | 4464 | frag_format_size (const fragS *fragP) |
43cd72b9 | 4465 | { |
e0001a05 NC |
4466 | static xtensa_insnbuf insnbuf = NULL; |
4467 | xtensa_isa isa = xtensa_default_isa; | |
43cd72b9 | 4468 | xtensa_format fmt; |
c138bc38 | 4469 | int fmt_size; |
e0001a05 NC |
4470 | |
4471 | if (!insnbuf) | |
4472 | insnbuf = xtensa_insnbuf_alloc (isa); | |
4473 | ||
43cd72b9 BW |
4474 | if (fragP == NULL) |
4475 | return XTENSA_UNDEFINED; | |
4476 | ||
d77b99c9 BW |
4477 | xtensa_insnbuf_from_chars (isa, insnbuf, |
4478 | (unsigned char *) fragP->fr_literal, 0); | |
43cd72b9 BW |
4479 | |
4480 | fmt = xtensa_format_decode (isa, insnbuf); | |
4481 | if (fmt == XTENSA_UNDEFINED) | |
e0001a05 | 4482 | return XTENSA_UNDEFINED; |
43cd72b9 BW |
4483 | fmt_size = xtensa_format_length (isa, fmt); |
4484 | ||
4485 | /* If the next format won't be changing due to relaxation, just | |
4486 | return the length of the first format. */ | |
4487 | if (fragP->fr_opcode != fragP->fr_literal) | |
4488 | return fmt_size; | |
4489 | ||
c138bc38 | 4490 | /* If during relaxation we have to pull an instruction out of a |
43cd72b9 BW |
4491 | multi-slot instruction, we will return the more conservative |
4492 | number. This works because alignment on bigger instructions | |
4493 | is more restrictive than alignment on smaller instructions. | |
4494 | This is more conservative than we would like, but it happens | |
4495 | infrequently. */ | |
4496 | ||
4497 | if (xtensa_format_num_slots (xtensa_default_isa, fmt) > 1) | |
4498 | return fmt_size; | |
4499 | ||
4500 | /* If we aren't doing one of our own relaxations or it isn't | |
4501 | slot-based, then the insn size won't change. */ | |
4502 | if (fragP->fr_type != rs_machine_dependent) | |
4503 | return fmt_size; | |
4504 | if (fragP->fr_subtype != RELAX_SLOTS) | |
4505 | return fmt_size; | |
4506 | ||
4507 | /* If an instruction is about to grow, return the longer size. */ | |
4508 | if (fragP->tc_frag_data.slot_subtypes[0] == RELAX_IMMED_STEP1 | |
b81bf389 BW |
4509 | || fragP->tc_frag_data.slot_subtypes[0] == RELAX_IMMED_STEP2 |
4510 | || fragP->tc_frag_data.slot_subtypes[0] == RELAX_IMMED_STEP3) | |
def13efb BW |
4511 | { |
4512 | /* For most frags at RELAX_IMMED_STEPX, with X > 0, the first | |
4513 | instruction in the relaxed version is of length 3. (The case | |
4514 | where we have to pull the instruction out of a FLIX bundle | |
4515 | is handled conservatively above.) However, frags with opcodes | |
4516 | that are expanding to wide branches end up having formats that | |
4517 | are not determinable by the RELAX_IMMED_STEPX enumeration, and | |
4518 | we can't tell directly what format the relaxer picked. This | |
4519 | is a wart in the design of the relaxer that should someday be | |
4520 | fixed, but would require major changes, or at least should | |
4521 | be accompanied by major changes to make use of that data. | |
4522 | ||
4523 | In any event, we can tell that we are expanding from a single-slot | |
19ef5f3d | 4524 | format to a wider one with the logic below. */ |
def13efb | 4525 | |
19ef5f3d SA |
4526 | int i; |
4527 | int relaxed_size = fmt_size + fragP->tc_frag_data.text_expansion[0]; | |
4528 | ||
4529 | for (i = 0; i < xtensa_isa_num_formats (isa); i++) | |
4530 | { | |
4531 | if (relaxed_size == xtensa_format_length (isa, i)) | |
4532 | return relaxed_size; | |
4533 | } | |
4534 | ||
4535 | return 3; | |
def13efb | 4536 | } |
c138bc38 | 4537 | |
43cd72b9 BW |
4538 | if (fragP->tc_frag_data.slot_subtypes[0] == RELAX_NARROW) |
4539 | return 2 + fragP->tc_frag_data.text_expansion[0]; | |
e0001a05 | 4540 | |
43cd72b9 | 4541 | return fmt_size; |
e0001a05 NC |
4542 | } |
4543 | ||
4544 | ||
7fa3d080 BW |
4545 | static int |
4546 | next_frag_format_size (const fragS *fragP) | |
e0001a05 | 4547 | { |
7fa3d080 BW |
4548 | const fragS *next_fragP = next_non_empty_frag (fragP); |
4549 | return frag_format_size (next_fragP); | |
e0001a05 NC |
4550 | } |
4551 | ||
4552 | ||
03aaa593 BW |
4553 | /* In early Xtensa Processors, for reasons that are unclear, the ISA |
4554 | required two-byte instructions to be treated as three-byte instructions | |
4555 | for loop instruction alignment. This restriction was removed beginning | |
4556 | with Xtensa LX. Now the only requirement on loop instruction alignment | |
4557 | is that the first instruction of the loop must appear at an address that | |
4558 | does not cross a fetch boundary. */ | |
4559 | ||
4560 | static int | |
4561 | get_loop_align_size (int insn_size) | |
4562 | { | |
4563 | if (insn_size == XTENSA_UNDEFINED) | |
4564 | return xtensa_fetch_width; | |
4565 | ||
4566 | if (enforce_three_byte_loop_align && insn_size == 2) | |
4567 | return 3; | |
4568 | ||
4569 | return insn_size; | |
4570 | } | |
4571 | ||
4572 | ||
e0001a05 NC |
4573 | /* If the next legit fragment is an end-of-loop marker, |
4574 | switch its state so it will instantiate a NOP. */ | |
4575 | ||
4576 | static void | |
1d19a770 | 4577 | update_next_frag_state (fragS *fragP) |
e0001a05 NC |
4578 | { |
4579 | fragS *next_fragP = fragP->fr_next; | |
43cd72b9 | 4580 | fragS *new_target = NULL; |
e0001a05 | 4581 | |
7b1cc377 | 4582 | if (align_targets) |
43cd72b9 BW |
4583 | { |
4584 | /* We are guaranteed there will be one of these... */ | |
4585 | while (!(next_fragP->fr_type == rs_machine_dependent | |
4586 | && (next_fragP->fr_subtype == RELAX_MAYBE_UNREACHABLE | |
4587 | || next_fragP->fr_subtype == RELAX_UNREACHABLE))) | |
4588 | next_fragP = next_fragP->fr_next; | |
4589 | ||
9c2799c2 | 4590 | gas_assert (next_fragP->fr_type == rs_machine_dependent |
43cd72b9 BW |
4591 | && (next_fragP->fr_subtype == RELAX_MAYBE_UNREACHABLE |
4592 | || next_fragP->fr_subtype == RELAX_UNREACHABLE)); | |
4593 | ||
4594 | /* ...and one of these. */ | |
4595 | new_target = next_fragP->fr_next; | |
4596 | while (!(new_target->fr_type == rs_machine_dependent | |
4597 | && (new_target->fr_subtype == RELAX_MAYBE_DESIRE_ALIGN | |
4598 | || new_target->fr_subtype == RELAX_DESIRE_ALIGN))) | |
4599 | new_target = new_target->fr_next; | |
4600 | ||
9c2799c2 | 4601 | gas_assert (new_target->fr_type == rs_machine_dependent |
43cd72b9 BW |
4602 | && (new_target->fr_subtype == RELAX_MAYBE_DESIRE_ALIGN |
4603 | || new_target->fr_subtype == RELAX_DESIRE_ALIGN)); | |
4604 | } | |
43cd72b9 | 4605 | |
1d19a770 | 4606 | while (next_fragP && next_fragP->fr_fix == 0) |
43cd72b9 | 4607 | { |
1d19a770 BW |
4608 | if (next_fragP->fr_type == rs_machine_dependent |
4609 | && next_fragP->fr_subtype == RELAX_LOOP_END) | |
43cd72b9 | 4610 | { |
1d19a770 BW |
4611 | next_fragP->fr_subtype = RELAX_LOOP_END_ADD_NOP; |
4612 | return; | |
e0001a05 | 4613 | } |
1d19a770 BW |
4614 | |
4615 | next_fragP = next_fragP->fr_next; | |
e0001a05 NC |
4616 | } |
4617 | } | |
4618 | ||
4619 | ||
4620 | static bfd_boolean | |
7fa3d080 | 4621 | next_frag_is_branch_target (const fragS *fragP) |
e0001a05 | 4622 | { |
43cd72b9 | 4623 | /* Sometimes an empty will end up here due to storage allocation issues, |
e0001a05 NC |
4624 | so we have to skip until we find something legit. */ |
4625 | for (fragP = fragP->fr_next; fragP; fragP = fragP->fr_next) | |
4626 | { | |
4627 | if (fragP->tc_frag_data.is_branch_target) | |
4628 | return TRUE; | |
4629 | if (fragP->fr_fix != 0) | |
4630 | break; | |
4631 | } | |
4632 | return FALSE; | |
4633 | } | |
4634 | ||
4635 | ||
4636 | static bfd_boolean | |
7fa3d080 | 4637 | next_frag_is_loop_target (const fragS *fragP) |
e0001a05 | 4638 | { |
c138bc38 | 4639 | /* Sometimes an empty will end up here due storage allocation issues. |
e0001a05 NC |
4640 | So we have to skip until we find something legit. */ |
4641 | for (fragP = fragP->fr_next; fragP; fragP = fragP->fr_next) | |
4642 | { | |
4643 | if (fragP->tc_frag_data.is_loop_target) | |
4644 | return TRUE; | |
4645 | if (fragP->fr_fix != 0) | |
4646 | break; | |
4647 | } | |
4648 | return FALSE; | |
4649 | } | |
4650 | ||
4651 | ||
3a1e9c4a SA |
4652 | /* As specified in the relaxation table, when a loop instruction is |
4653 | relaxed, there are 24 bytes between the loop instruction itself and | |
4654 | the first instruction in the loop. */ | |
4655 | ||
4656 | #define RELAXED_LOOP_INSN_BYTES 24 | |
4657 | ||
e0001a05 | 4658 | static addressT |
7fa3d080 | 4659 | next_frag_pre_opcode_bytes (const fragS *fragp) |
e0001a05 NC |
4660 | { |
4661 | const fragS *next_fragp = fragp->fr_next; | |
43cd72b9 | 4662 | xtensa_opcode next_opcode; |
e0001a05 | 4663 | |
43cd72b9 | 4664 | if (!next_frag_opcode_is_loop (fragp, &next_opcode)) |
e0001a05 NC |
4665 | return 0; |
4666 | ||
43cd72b9 BW |
4667 | /* Sometimes an empty will end up here due to storage allocation issues, |
4668 | so we have to skip until we find something legit. */ | |
e0001a05 NC |
4669 | while (next_fragp->fr_fix == 0) |
4670 | next_fragp = next_fragp->fr_next; | |
4671 | ||
4672 | if (next_fragp->fr_type != rs_machine_dependent) | |
4673 | return 0; | |
4674 | ||
4675 | /* There is some implicit knowledge encoded in here. | |
4676 | The LOOP instructions that are NOT RELAX_IMMED have | |
43cd72b9 BW |
4677 | been relaxed. Note that we can assume that the LOOP |
4678 | instruction is in slot 0 because loops aren't bundleable. */ | |
4679 | if (next_fragp->tc_frag_data.slot_subtypes[0] > RELAX_IMMED) | |
3a1e9c4a | 4680 | return get_expanded_loop_offset (next_opcode) + RELAXED_LOOP_INSN_BYTES; |
e0001a05 NC |
4681 | |
4682 | return 0; | |
4683 | } | |
4684 | ||
4685 | ||
4686 | /* Mark a location where we can later insert literal frags. Update | |
4687 | the section's literal_pool_loc, so subsequent literals can be | |
4688 | placed nearest to their use. */ | |
4689 | ||
4690 | static void | |
7fa3d080 | 4691 | xtensa_mark_literal_pool_location (void) |
e0001a05 NC |
4692 | { |
4693 | /* Any labels pointing to the current location need | |
4694 | to be adjusted to after the literal pool. */ | |
4695 | emit_state s; | |
e0001a05 | 4696 | fragS *pool_location; |
e0001a05 | 4697 | |
1f2a7e38 | 4698 | if (use_literal_section) |
43cd72b9 BW |
4699 | return; |
4700 | ||
dd49a749 BW |
4701 | /* We stash info in these frags so we can later move the literal's |
4702 | fixes into this frchain's fix list. */ | |
e0001a05 | 4703 | pool_location = frag_now; |
dd49a749 | 4704 | frag_now->tc_frag_data.lit_frchain = frchain_now; |
c48aaca0 | 4705 | frag_now->tc_frag_data.literal_frag = frag_now; |
dd49a749 | 4706 | frag_variant (rs_machine_dependent, 0, 0, |
e0001a05 | 4707 | RELAX_LITERAL_POOL_BEGIN, NULL, 0, NULL); |
43cd72b9 | 4708 | xtensa_set_frag_assembly_state (frag_now); |
dd49a749 BW |
4709 | frag_now->tc_frag_data.lit_seg = now_seg; |
4710 | frag_variant (rs_machine_dependent, 0, 0, | |
e0001a05 | 4711 | RELAX_LITERAL_POOL_END, NULL, 0, NULL); |
43cd72b9 | 4712 | xtensa_set_frag_assembly_state (frag_now); |
e0001a05 NC |
4713 | |
4714 | /* Now put a frag into the literal pool that points to this location. */ | |
4715 | set_literal_pool_location (now_seg, pool_location); | |
43cd72b9 BW |
4716 | xtensa_switch_to_non_abs_literal_fragment (&s); |
4717 | frag_align (2, 0, 0); | |
4718 | record_alignment (now_seg, 2); | |
e0001a05 NC |
4719 | |
4720 | /* Close whatever frag is there. */ | |
4721 | frag_variant (rs_fill, 0, 0, 0, NULL, 0, NULL); | |
43cd72b9 | 4722 | xtensa_set_frag_assembly_state (frag_now); |
e0001a05 NC |
4723 | frag_now->tc_frag_data.literal_frag = pool_location; |
4724 | frag_variant (rs_fill, 0, 0, 0, NULL, 0, NULL); | |
4725 | xtensa_restore_emit_state (&s); | |
43cd72b9 | 4726 | xtensa_set_frag_assembly_state (frag_now); |
e0001a05 NC |
4727 | } |
4728 | ||
4729 | ||
43cd72b9 BW |
4730 | /* Build a nop of the correct size into tinsn. */ |
4731 | ||
4732 | static void | |
7fa3d080 | 4733 | build_nop (TInsn *tinsn, int size) |
43cd72b9 BW |
4734 | { |
4735 | tinsn_init (tinsn); | |
4736 | switch (size) | |
4737 | { | |
4738 | case 2: | |
4739 | tinsn->opcode = xtensa_nop_n_opcode; | |
4740 | tinsn->ntok = 0; | |
4741 | if (tinsn->opcode == XTENSA_UNDEFINED) | |
4742 | as_fatal (_("opcode 'NOP.N' unavailable in this configuration")); | |
4743 | break; | |
4744 | ||
4745 | case 3: | |
4746 | if (xtensa_nop_opcode == XTENSA_UNDEFINED) | |
4747 | { | |
4748 | tinsn->opcode = xtensa_or_opcode; | |
4749 | set_expr_const (&tinsn->tok[0], 1); | |
4750 | set_expr_const (&tinsn->tok[1], 1); | |
4751 | set_expr_const (&tinsn->tok[2], 1); | |
4752 | tinsn->ntok = 3; | |
4753 | } | |
4754 | else | |
4755 | tinsn->opcode = xtensa_nop_opcode; | |
4756 | ||
9c2799c2 | 4757 | gas_assert (tinsn->opcode != XTENSA_UNDEFINED); |
43cd72b9 BW |
4758 | } |
4759 | } | |
4760 | ||
4761 | ||
e0001a05 NC |
4762 | /* Assemble a NOP of the requested size in the buffer. User must have |
4763 | allocated "buf" with at least "size" bytes. */ | |
4764 | ||
7fa3d080 | 4765 | static void |
d77b99c9 | 4766 | assemble_nop (int size, char *buf) |
e0001a05 NC |
4767 | { |
4768 | static xtensa_insnbuf insnbuf = NULL; | |
43cd72b9 | 4769 | TInsn tinsn; |
e0001a05 | 4770 | |
43cd72b9 | 4771 | build_nop (&tinsn, size); |
e0001a05 | 4772 | |
43cd72b9 BW |
4773 | if (!insnbuf) |
4774 | insnbuf = xtensa_insnbuf_alloc (xtensa_default_isa); | |
e0001a05 | 4775 | |
43cd72b9 | 4776 | tinsn_to_insnbuf (&tinsn, insnbuf); |
d77b99c9 BW |
4777 | xtensa_insnbuf_to_chars (xtensa_default_isa, insnbuf, |
4778 | (unsigned char *) buf, 0); | |
e0001a05 NC |
4779 | } |
4780 | ||
4781 | ||
4782 | /* Return the number of bytes for the offset of the expanded loop | |
4783 | instruction. This should be incorporated into the relaxation | |
4784 | specification but is hard-coded here. This is used to auto-align | |
4785 | the loop instruction. It is invalid to call this function if the | |
4786 | configuration does not have loops or if the opcode is not a loop | |
4787 | opcode. */ | |
4788 | ||
4789 | static addressT | |
7fa3d080 | 4790 | get_expanded_loop_offset (xtensa_opcode opcode) |
e0001a05 NC |
4791 | { |
4792 | /* This is the OFFSET of the loop instruction in the expanded loop. | |
4793 | This MUST correspond directly to the specification of the loop | |
4794 | expansion. It will be validated on fragment conversion. */ | |
9c2799c2 | 4795 | gas_assert (opcode != XTENSA_UNDEFINED); |
e0001a05 NC |
4796 | if (opcode == xtensa_loop_opcode) |
4797 | return 0; | |
4798 | if (opcode == xtensa_loopnez_opcode) | |
4799 | return 3; | |
4800 | if (opcode == xtensa_loopgtz_opcode) | |
4801 | return 6; | |
4802 | as_fatal (_("get_expanded_loop_offset: invalid opcode")); | |
4803 | return 0; | |
4804 | } | |
4805 | ||
4806 | ||
7fa3d080 BW |
4807 | static fragS * |
4808 | get_literal_pool_location (segT seg) | |
e0001a05 NC |
4809 | { |
4810 | return seg_info (seg)->tc_segment_info_data.literal_pool_loc; | |
4811 | } | |
4812 | ||
4813 | ||
4814 | static void | |
7fa3d080 | 4815 | set_literal_pool_location (segT seg, fragS *literal_pool_loc) |
e0001a05 NC |
4816 | { |
4817 | seg_info (seg)->tc_segment_info_data.literal_pool_loc = literal_pool_loc; | |
4818 | } | |
4819 | ||
43cd72b9 BW |
4820 | |
4821 | /* Set frag assembly state should be called when a new frag is | |
4822 | opened and after a frag has been closed. */ | |
4823 | ||
7fa3d080 BW |
4824 | static void |
4825 | xtensa_set_frag_assembly_state (fragS *fragP) | |
43cd72b9 BW |
4826 | { |
4827 | if (!density_supported) | |
4828 | fragP->tc_frag_data.is_no_density = TRUE; | |
4829 | ||
4830 | /* This function is called from subsegs_finish, which is called | |
c138bc38 | 4831 | after xtensa_end, so we can't use "use_transform" or |
43cd72b9 BW |
4832 | "use_schedule" here. */ |
4833 | if (!directive_state[directive_transform]) | |
4834 | fragP->tc_frag_data.is_no_transform = TRUE; | |
7c834684 BW |
4835 | if (directive_state[directive_longcalls]) |
4836 | fragP->tc_frag_data.use_longcalls = TRUE; | |
43cd72b9 BW |
4837 | fragP->tc_frag_data.use_absolute_literals = |
4838 | directive_state[directive_absolute_literals]; | |
4839 | fragP->tc_frag_data.is_assembly_state_set = TRUE; | |
4840 | } | |
4841 | ||
4842 | ||
7fa3d080 BW |
4843 | static bfd_boolean |
4844 | relaxable_section (asection *sec) | |
43cd72b9 | 4845 | { |
11ac2671 BW |
4846 | return ((sec->flags & SEC_DEBUGGING) == 0 |
4847 | && strcmp (sec->name, ".eh_frame") != 0); | |
43cd72b9 BW |
4848 | } |
4849 | ||
4850 | ||
99ded152 BW |
4851 | static void |
4852 | xtensa_mark_frags_for_org (void) | |
4853 | { | |
4854 | segT *seclist; | |
4855 | ||
4856 | /* Walk over each fragment of all of the current segments. If we find | |
4857 | a .org frag in any of the segments, mark all frags prior to it as | |
4858 | "no transform", which will prevent linker optimizations from messing | |
4859 | up the .org distance. This should be done after | |
4860 | xtensa_find_unmarked_state_frags, because we don't want to worry here | |
4861 | about that function trashing the data we save here. */ | |
4862 | ||
4863 | for (seclist = &stdoutput->sections; | |
4864 | seclist && *seclist; | |
4865 | seclist = &(*seclist)->next) | |
4866 | { | |
4867 | segT sec = *seclist; | |
4868 | segment_info_type *seginfo; | |
4869 | fragS *fragP; | |
4870 | flagword flags; | |
4871 | flags = bfd_get_section_flags (stdoutput, sec); | |
4872 | if (flags & SEC_DEBUGGING) | |
4873 | continue; | |
4874 | if (!(flags & SEC_ALLOC)) | |
4875 | continue; | |
4876 | ||
4877 | seginfo = seg_info (sec); | |
4878 | if (seginfo && seginfo->frchainP) | |
4879 | { | |
4880 | fragS *last_fragP = seginfo->frchainP->frch_root; | |
4881 | for (fragP = seginfo->frchainP->frch_root; fragP; | |
4882 | fragP = fragP->fr_next) | |
4883 | { | |
4884 | /* cvt_frag_to_fill has changed the fr_type of org frags to | |
4885 | rs_fill, so use the value as cached in rs_subtype here. */ | |
4886 | if (fragP->fr_subtype == RELAX_ORG) | |
4887 | { | |
4888 | while (last_fragP != fragP->fr_next) | |
4889 | { | |
4890 | last_fragP->tc_frag_data.is_no_transform = TRUE; | |
4891 | last_fragP = last_fragP->fr_next; | |
4892 | } | |
4893 | } | |
4894 | } | |
4895 | } | |
4896 | } | |
4897 | } | |
4898 | ||
4899 | ||
43cd72b9 | 4900 | static void |
7fa3d080 | 4901 | xtensa_find_unmarked_state_frags (void) |
43cd72b9 BW |
4902 | { |
4903 | segT *seclist; | |
4904 | ||
4905 | /* Walk over each fragment of all of the current segments. For each | |
4906 | unmarked fragment, mark it with the same info as the previous | |
4907 | fragment. */ | |
4908 | for (seclist = &stdoutput->sections; | |
4909 | seclist && *seclist; | |
4910 | seclist = &(*seclist)->next) | |
4911 | { | |
4912 | segT sec = *seclist; | |
4913 | segment_info_type *seginfo; | |
4914 | fragS *fragP; | |
4915 | flagword flags; | |
4916 | flags = bfd_get_section_flags (stdoutput, sec); | |
4917 | if (flags & SEC_DEBUGGING) | |
4918 | continue; | |
4919 | if (!(flags & SEC_ALLOC)) | |
4920 | continue; | |
4921 | ||
4922 | seginfo = seg_info (sec); | |
4923 | if (seginfo && seginfo->frchainP) | |
4924 | { | |
4925 | fragS *last_fragP = 0; | |
4926 | for (fragP = seginfo->frchainP->frch_root; fragP; | |
4927 | fragP = fragP->fr_next) | |
4928 | { | |
4929 | if (fragP->fr_fix != 0 | |
4930 | && !fragP->tc_frag_data.is_assembly_state_set) | |
4931 | { | |
4932 | if (last_fragP == 0) | |
4933 | { | |
4934 | as_warn_where (fragP->fr_file, fragP->fr_line, | |
4935 | _("assembly state not set for first frag in section %s"), | |
4936 | sec->name); | |
4937 | } | |
4938 | else | |
4939 | { | |
4940 | fragP->tc_frag_data.is_assembly_state_set = TRUE; | |
4941 | fragP->tc_frag_data.is_no_density = | |
4942 | last_fragP->tc_frag_data.is_no_density; | |
4943 | fragP->tc_frag_data.is_no_transform = | |
4944 | last_fragP->tc_frag_data.is_no_transform; | |
7c834684 BW |
4945 | fragP->tc_frag_data.use_longcalls = |
4946 | last_fragP->tc_frag_data.use_longcalls; | |
43cd72b9 BW |
4947 | fragP->tc_frag_data.use_absolute_literals = |
4948 | last_fragP->tc_frag_data.use_absolute_literals; | |
4949 | } | |
4950 | } | |
4951 | if (fragP->tc_frag_data.is_assembly_state_set) | |
4952 | last_fragP = fragP; | |
4953 | } | |
4954 | } | |
4955 | } | |
4956 | } | |
4957 | ||
4958 | ||
4959 | static void | |
7fa3d080 BW |
4960 | xtensa_find_unaligned_branch_targets (bfd *abfd ATTRIBUTE_UNUSED, |
4961 | asection *sec, | |
4962 | void *unused ATTRIBUTE_UNUSED) | |
43cd72b9 BW |
4963 | { |
4964 | flagword flags = bfd_get_section_flags (abfd, sec); | |
4965 | segment_info_type *seginfo = seg_info (sec); | |
4966 | fragS *frag = seginfo->frchainP->frch_root; | |
c138bc38 | 4967 | |
43cd72b9 | 4968 | if (flags & SEC_CODE) |
c138bc38 | 4969 | { |
43cd72b9 BW |
4970 | xtensa_isa isa = xtensa_default_isa; |
4971 | xtensa_insnbuf insnbuf = xtensa_insnbuf_alloc (isa); | |
4972 | while (frag != NULL) | |
4973 | { | |
4974 | if (frag->tc_frag_data.is_branch_target) | |
4975 | { | |
4976 | int op_size; | |
664df4e4 | 4977 | addressT branch_align, frag_addr; |
43cd72b9 BW |
4978 | xtensa_format fmt; |
4979 | ||
d77b99c9 BW |
4980 | xtensa_insnbuf_from_chars |
4981 | (isa, insnbuf, (unsigned char *) frag->fr_literal, 0); | |
43cd72b9 BW |
4982 | fmt = xtensa_format_decode (isa, insnbuf); |
4983 | op_size = xtensa_format_length (isa, fmt); | |
664df4e4 BW |
4984 | branch_align = 1 << branch_align_power (sec); |
4985 | frag_addr = frag->fr_address % branch_align; | |
4986 | if (frag_addr + op_size > branch_align) | |
43cd72b9 BW |
4987 | as_warn_where (frag->fr_file, frag->fr_line, |
4988 | _("unaligned branch target: %d bytes at 0x%lx"), | |
dd49a749 | 4989 | op_size, (long) frag->fr_address); |
43cd72b9 BW |
4990 | } |
4991 | frag = frag->fr_next; | |
4992 | } | |
4993 | xtensa_insnbuf_free (isa, insnbuf); | |
4994 | } | |
4995 | } | |
4996 | ||
4997 | ||
4998 | static void | |
7fa3d080 BW |
4999 | xtensa_find_unaligned_loops (bfd *abfd ATTRIBUTE_UNUSED, |
5000 | asection *sec, | |
5001 | void *unused ATTRIBUTE_UNUSED) | |
43cd72b9 BW |
5002 | { |
5003 | flagword flags = bfd_get_section_flags (abfd, sec); | |
5004 | segment_info_type *seginfo = seg_info (sec); | |
5005 | fragS *frag = seginfo->frchainP->frch_root; | |
5006 | xtensa_isa isa = xtensa_default_isa; | |
c138bc38 | 5007 | |
43cd72b9 | 5008 | if (flags & SEC_CODE) |
c138bc38 | 5009 | { |
43cd72b9 BW |
5010 | xtensa_insnbuf insnbuf = xtensa_insnbuf_alloc (isa); |
5011 | while (frag != NULL) | |
5012 | { | |
5013 | if (frag->tc_frag_data.is_first_loop_insn) | |
5014 | { | |
5015 | int op_size; | |
d77b99c9 | 5016 | addressT frag_addr; |
43cd72b9 BW |
5017 | xtensa_format fmt; |
5018 | ||
d77b99c9 BW |
5019 | xtensa_insnbuf_from_chars |
5020 | (isa, insnbuf, (unsigned char *) frag->fr_literal, 0); | |
43cd72b9 BW |
5021 | fmt = xtensa_format_decode (isa, insnbuf); |
5022 | op_size = xtensa_format_length (isa, fmt); | |
5023 | frag_addr = frag->fr_address % xtensa_fetch_width; | |
5024 | ||
d77b99c9 | 5025 | if (frag_addr + op_size > xtensa_fetch_width) |
43cd72b9 BW |
5026 | as_warn_where (frag->fr_file, frag->fr_line, |
5027 | _("unaligned loop: %d bytes at 0x%lx"), | |
dd49a749 | 5028 | op_size, (long) frag->fr_address); |
43cd72b9 BW |
5029 | } |
5030 | frag = frag->fr_next; | |
5031 | } | |
5032 | xtensa_insnbuf_free (isa, insnbuf); | |
5033 | } | |
5034 | } | |
5035 | ||
5036 | ||
30f725a1 BW |
5037 | static int |
5038 | xg_apply_fix_value (fixS *fixP, valueT val) | |
43cd72b9 BW |
5039 | { |
5040 | xtensa_isa isa = xtensa_default_isa; | |
5041 | static xtensa_insnbuf insnbuf = NULL; | |
5042 | static xtensa_insnbuf slotbuf = NULL; | |
5043 | xtensa_format fmt; | |
5044 | int slot; | |
5045 | bfd_boolean alt_reloc; | |
5046 | xtensa_opcode opcode; | |
5047 | char *const fixpos = fixP->fx_frag->fr_literal + fixP->fx_where; | |
5048 | ||
1b6e95c2 BW |
5049 | if (decode_reloc (fixP->fx_r_type, &slot, &alt_reloc) |
5050 | || alt_reloc) | |
43cd72b9 BW |
5051 | as_fatal (_("unexpected fix")); |
5052 | ||
5053 | if (!insnbuf) | |
5054 | { | |
5055 | insnbuf = xtensa_insnbuf_alloc (isa); | |
5056 | slotbuf = xtensa_insnbuf_alloc (isa); | |
5057 | } | |
5058 | ||
d77b99c9 | 5059 | xtensa_insnbuf_from_chars (isa, insnbuf, (unsigned char *) fixpos, 0); |
43cd72b9 BW |
5060 | fmt = xtensa_format_decode (isa, insnbuf); |
5061 | if (fmt == XTENSA_UNDEFINED) | |
5062 | as_fatal (_("undecodable fix")); | |
5063 | xtensa_format_get_slot (isa, fmt, slot, insnbuf, slotbuf); | |
5064 | opcode = xtensa_opcode_decode (isa, fmt, slot, slotbuf); | |
5065 | if (opcode == XTENSA_UNDEFINED) | |
5066 | as_fatal (_("undecodable fix")); | |
5067 | ||
5068 | /* CONST16 immediates are not PC-relative, despite the fact that we | |
5069 | reuse the normal PC-relative operand relocations for the low part | |
30f725a1 | 5070 | of a CONST16 operand. */ |
43cd72b9 | 5071 | if (opcode == xtensa_const16_opcode) |
30f725a1 | 5072 | return 0; |
43cd72b9 BW |
5073 | |
5074 | xtensa_insnbuf_set_operand (slotbuf, fmt, slot, opcode, | |
5075 | get_relaxable_immed (opcode), val, | |
5076 | fixP->fx_file, fixP->fx_line); | |
5077 | ||
5078 | xtensa_format_set_slot (isa, fmt, slot, insnbuf, slotbuf); | |
d77b99c9 | 5079 | xtensa_insnbuf_to_chars (isa, insnbuf, (unsigned char *) fixpos, 0); |
30f725a1 BW |
5080 | |
5081 | return 1; | |
43cd72b9 BW |
5082 | } |
5083 | ||
e0001a05 NC |
5084 | \f |
5085 | /* External Functions and Other GAS Hooks. */ | |
5086 | ||
5087 | const char * | |
7fa3d080 | 5088 | xtensa_target_format (void) |
e0001a05 NC |
5089 | { |
5090 | return (target_big_endian ? "elf32-xtensa-be" : "elf32-xtensa-le"); | |
5091 | } | |
5092 | ||
5093 | ||
5094 | void | |
7fa3d080 | 5095 | xtensa_file_arch_init (bfd *abfd) |
e0001a05 NC |
5096 | { |
5097 | bfd_set_private_flags (abfd, 0x100 | 0x200); | |
5098 | } | |
5099 | ||
5100 | ||
5101 | void | |
7fa3d080 | 5102 | md_number_to_chars (char *buf, valueT val, int n) |
e0001a05 NC |
5103 | { |
5104 | if (target_big_endian) | |
5105 | number_to_chars_bigendian (buf, val, n); | |
5106 | else | |
5107 | number_to_chars_littleendian (buf, val, n); | |
5108 | } | |
5109 | ||
5110 | ||
5111 | /* This function is called once, at assembler startup time. It should | |
5112 | set up all the tables, etc. that the MD part of the assembler will | |
5113 | need. */ | |
5114 | ||
5115 | void | |
7fa3d080 | 5116 | md_begin (void) |
e0001a05 NC |
5117 | { |
5118 | segT current_section = now_seg; | |
5119 | int current_subsec = now_subseg; | |
5120 | xtensa_isa isa; | |
62af60e2 | 5121 | int i; |
e0001a05 | 5122 | |
43cd72b9 | 5123 | xtensa_default_isa = xtensa_isa_init (0, 0); |
e0001a05 | 5124 | isa = xtensa_default_isa; |
e0001a05 | 5125 | |
43cd72b9 BW |
5126 | linkrelax = 1; |
5127 | ||
74869ac7 | 5128 | /* Set up the literal sections. */ |
e0001a05 | 5129 | memset (&default_lit_sections, 0, sizeof (default_lit_sections)); |
e0001a05 NC |
5130 | |
5131 | subseg_set (current_section, current_subsec); | |
5132 | ||
5133 | xtensa_addi_opcode = xtensa_opcode_lookup (isa, "addi"); | |
5134 | xtensa_addmi_opcode = xtensa_opcode_lookup (isa, "addmi"); | |
5135 | xtensa_call0_opcode = xtensa_opcode_lookup (isa, "call0"); | |
5136 | xtensa_call4_opcode = xtensa_opcode_lookup (isa, "call4"); | |
5137 | xtensa_call8_opcode = xtensa_opcode_lookup (isa, "call8"); | |
5138 | xtensa_call12_opcode = xtensa_opcode_lookup (isa, "call12"); | |
5139 | xtensa_callx0_opcode = xtensa_opcode_lookup (isa, "callx0"); | |
5140 | xtensa_callx4_opcode = xtensa_opcode_lookup (isa, "callx4"); | |
5141 | xtensa_callx8_opcode = xtensa_opcode_lookup (isa, "callx8"); | |
5142 | xtensa_callx12_opcode = xtensa_opcode_lookup (isa, "callx12"); | |
43cd72b9 | 5143 | xtensa_const16_opcode = xtensa_opcode_lookup (isa, "const16"); |
e0001a05 | 5144 | xtensa_entry_opcode = xtensa_opcode_lookup (isa, "entry"); |
d12f9798 | 5145 | xtensa_extui_opcode = xtensa_opcode_lookup (isa, "extui"); |
43cd72b9 BW |
5146 | xtensa_movi_opcode = xtensa_opcode_lookup (isa, "movi"); |
5147 | xtensa_movi_n_opcode = xtensa_opcode_lookup (isa, "movi.n"); | |
e0001a05 | 5148 | xtensa_isync_opcode = xtensa_opcode_lookup (isa, "isync"); |
19e8f41a | 5149 | xtensa_j_opcode = xtensa_opcode_lookup (isa, "j"); |
e0001a05 | 5150 | xtensa_jx_opcode = xtensa_opcode_lookup (isa, "jx"); |
43cd72b9 | 5151 | xtensa_l32r_opcode = xtensa_opcode_lookup (isa, "l32r"); |
e0001a05 NC |
5152 | xtensa_loop_opcode = xtensa_opcode_lookup (isa, "loop"); |
5153 | xtensa_loopnez_opcode = xtensa_opcode_lookup (isa, "loopnez"); | |
5154 | xtensa_loopgtz_opcode = xtensa_opcode_lookup (isa, "loopgtz"); | |
43cd72b9 | 5155 | xtensa_nop_opcode = xtensa_opcode_lookup (isa, "nop"); |
e0001a05 NC |
5156 | xtensa_nop_n_opcode = xtensa_opcode_lookup (isa, "nop.n"); |
5157 | xtensa_or_opcode = xtensa_opcode_lookup (isa, "or"); | |
5158 | xtensa_ret_opcode = xtensa_opcode_lookup (isa, "ret"); | |
5159 | xtensa_ret_n_opcode = xtensa_opcode_lookup (isa, "ret.n"); | |
5160 | xtensa_retw_opcode = xtensa_opcode_lookup (isa, "retw"); | |
5161 | xtensa_retw_n_opcode = xtensa_opcode_lookup (isa, "retw.n"); | |
43cd72b9 | 5162 | xtensa_rsr_lcount_opcode = xtensa_opcode_lookup (isa, "rsr.lcount"); |
e0001a05 | 5163 | xtensa_waiti_opcode = xtensa_opcode_lookup (isa, "waiti"); |
43cd72b9 | 5164 | |
62af60e2 SA |
5165 | for (i = 0; i < xtensa_isa_num_formats (isa); i++) |
5166 | { | |
5167 | int format_slots = xtensa_format_num_slots (isa, i); | |
5168 | if (format_slots > config_max_slots) | |
5169 | config_max_slots = format_slots; | |
5170 | } | |
5171 | ||
5172 | xg_init_vinsn (&cur_vinsn); | |
5173 | ||
77cba8a3 BW |
5174 | xtensa_num_pipe_stages = xtensa_isa_num_pipe_stages (isa); |
5175 | ||
43cd72b9 BW |
5176 | init_op_placement_info_table (); |
5177 | ||
5178 | /* Set up the assembly state. */ | |
5179 | if (!frag_now->tc_frag_data.is_assembly_state_set) | |
5180 | xtensa_set_frag_assembly_state (frag_now); | |
5181 | } | |
5182 | ||
5183 | ||
5184 | /* TC_INIT_FIX_DATA hook */ | |
5185 | ||
5186 | void | |
7fa3d080 | 5187 | xtensa_init_fix_data (fixS *x) |
43cd72b9 BW |
5188 | { |
5189 | x->tc_fix_data.slot = 0; | |
5190 | x->tc_fix_data.X_add_symbol = NULL; | |
5191 | x->tc_fix_data.X_add_number = 0; | |
e0001a05 NC |
5192 | } |
5193 | ||
5194 | ||
5195 | /* tc_frob_label hook */ | |
5196 | ||
5197 | void | |
7fa3d080 | 5198 | xtensa_frob_label (symbolS *sym) |
e0001a05 | 5199 | { |
3ea38ac2 BW |
5200 | float freq; |
5201 | ||
5202 | if (cur_vinsn.inside_bundle) | |
5203 | { | |
5204 | as_bad (_("labels are not valid inside bundles")); | |
5205 | return; | |
5206 | } | |
5207 | ||
5208 | freq = get_subseg_target_freq (now_seg, now_subseg); | |
7b1cc377 | 5209 | |
43cd72b9 BW |
5210 | /* Since the label was already attached to a frag associated with the |
5211 | previous basic block, it now needs to be reset to the current frag. */ | |
5212 | symbol_set_frag (sym, frag_now); | |
5213 | S_SET_VALUE (sym, (valueT) frag_now_fix ()); | |
5214 | ||
82e7541d BW |
5215 | if (generating_literals) |
5216 | xtensa_add_literal_sym (sym); | |
5217 | else | |
5218 | xtensa_add_insn_label (sym); | |
5219 | ||
7b1cc377 BW |
5220 | if (symbol_get_tc (sym)->is_loop_target) |
5221 | { | |
5222 | if ((get_last_insn_flags (now_seg, now_subseg) | |
e0001a05 | 5223 | & FLAG_IS_BAD_LOOPEND) != 0) |
7b1cc377 BW |
5224 | as_bad (_("invalid last instruction for a zero-overhead loop")); |
5225 | ||
5226 | xtensa_set_frag_assembly_state (frag_now); | |
5227 | frag_var (rs_machine_dependent, 4, 4, RELAX_LOOP_END, | |
5228 | frag_now->fr_symbol, frag_now->fr_offset, NULL); | |
5229 | ||
5230 | xtensa_set_frag_assembly_state (frag_now); | |
c3ea6048 | 5231 | xtensa_move_labels (frag_now, 0); |
07a53e5c | 5232 | } |
e0001a05 NC |
5233 | |
5234 | /* No target aligning in the absolute section. */ | |
61846f28 | 5235 | if (now_seg != absolute_section |
61846f28 | 5236 | && !is_unaligned_label (sym) |
43cd72b9 BW |
5237 | && !generating_literals) |
5238 | { | |
43cd72b9 BW |
5239 | xtensa_set_frag_assembly_state (frag_now); |
5240 | ||
b7afdeef SA |
5241 | if (do_align_targets ()) |
5242 | frag_var (rs_machine_dependent, 0, (int) freq, | |
5243 | RELAX_DESIRE_ALIGN_IF_TARGET, frag_now->fr_symbol, | |
5244 | frag_now->fr_offset, NULL); | |
5245 | else | |
5246 | frag_var (rs_fill, 0, 0, frag_now->fr_subtype, | |
5247 | frag_now->fr_symbol, frag_now->fr_offset, NULL); | |
43cd72b9 | 5248 | xtensa_set_frag_assembly_state (frag_now); |
c3ea6048 | 5249 | xtensa_move_labels (frag_now, 0); |
43cd72b9 BW |
5250 | } |
5251 | ||
5252 | /* We need to mark the following properties even if we aren't aligning. */ | |
5253 | ||
5254 | /* If the label is already known to be a branch target, i.e., a | |
5255 | forward branch, mark the frag accordingly. Backward branches | |
5256 | are handled by xg_add_branch_and_loop_targets. */ | |
5257 | if (symbol_get_tc (sym)->is_branch_target) | |
5258 | symbol_get_frag (sym)->tc_frag_data.is_branch_target = TRUE; | |
5259 | ||
5260 | /* Loops only go forward, so they can be identified here. */ | |
5261 | if (symbol_get_tc (sym)->is_loop_target) | |
5262 | symbol_get_frag (sym)->tc_frag_data.is_loop_target = TRUE; | |
07a53e5c RH |
5263 | |
5264 | dwarf2_emit_label (sym); | |
43cd72b9 BW |
5265 | } |
5266 | ||
5267 | ||
5268 | /* tc_unrecognized_line hook */ | |
5269 | ||
5270 | int | |
7fa3d080 | 5271 | xtensa_unrecognized_line (int ch) |
43cd72b9 BW |
5272 | { |
5273 | switch (ch) | |
5274 | { | |
5275 | case '{' : | |
5276 | if (cur_vinsn.inside_bundle == 0) | |
5277 | { | |
5278 | /* PR8110: Cannot emit line number info inside a FLIX bundle | |
5279 | when using --gstabs. Temporarily disable debug info. */ | |
5280 | generate_lineno_debug (); | |
5281 | if (debug_type == DEBUG_STABS) | |
5282 | { | |
5283 | xt_saved_debug_type = debug_type; | |
5284 | debug_type = DEBUG_NONE; | |
5285 | } | |
82e7541d | 5286 | |
43cd72b9 BW |
5287 | cur_vinsn.inside_bundle = 1; |
5288 | } | |
5289 | else | |
5290 | { | |
5291 | as_bad (_("extra opening brace")); | |
5292 | return 0; | |
5293 | } | |
5294 | break; | |
82e7541d | 5295 | |
43cd72b9 BW |
5296 | case '}' : |
5297 | if (cur_vinsn.inside_bundle) | |
5298 | finish_vinsn (&cur_vinsn); | |
5299 | else | |
5300 | { | |
5301 | as_bad (_("extra closing brace")); | |
5302 | return 0; | |
5303 | } | |
5304 | break; | |
5305 | default: | |
5306 | as_bad (_("syntax error")); | |
5307 | return 0; | |
e0001a05 | 5308 | } |
43cd72b9 | 5309 | return 1; |
e0001a05 NC |
5310 | } |
5311 | ||
5312 | ||
5313 | /* md_flush_pending_output hook */ | |
5314 | ||
5315 | void | |
7fa3d080 | 5316 | xtensa_flush_pending_output (void) |
e0001a05 | 5317 | { |
a3582eee BW |
5318 | /* This line fixes a bug where automatically generated gstabs info |
5319 | separates a function label from its entry instruction, ending up | |
5320 | with the literal position between the function label and the entry | |
5321 | instruction and crashing code. It only happens with --gstabs and | |
5322 | --text-section-literals, and when several other obscure relaxation | |
5323 | conditions are met. */ | |
5324 | if (outputting_stabs_line_debug) | |
5325 | return; | |
5326 | ||
43cd72b9 BW |
5327 | if (cur_vinsn.inside_bundle) |
5328 | as_bad (_("missing closing brace")); | |
5329 | ||
e0001a05 NC |
5330 | /* If there is a non-zero instruction fragment, close it. */ |
5331 | if (frag_now_fix () != 0 && frag_now->tc_frag_data.is_insn) | |
5332 | { | |
5333 | frag_wane (frag_now); | |
5334 | frag_new (0); | |
43cd72b9 | 5335 | xtensa_set_frag_assembly_state (frag_now); |
e0001a05 NC |
5336 | } |
5337 | frag_now->tc_frag_data.is_insn = FALSE; | |
82e7541d BW |
5338 | |
5339 | xtensa_clear_insn_labels (); | |
e0001a05 NC |
5340 | } |
5341 | ||
5342 | ||
43cd72b9 BW |
5343 | /* We had an error while parsing an instruction. The string might look |
5344 | like this: "insn arg1, arg2 }". If so, we need to see the closing | |
5345 | brace and reset some fields. Otherwise, the vinsn never gets closed | |
5346 | and the num_slots field will grow past the end of the array of slots, | |
5347 | and bad things happen. */ | |
5348 | ||
5349 | static void | |
7fa3d080 | 5350 | error_reset_cur_vinsn (void) |
43cd72b9 BW |
5351 | { |
5352 | if (cur_vinsn.inside_bundle) | |
5353 | { | |
5354 | if (*input_line_pointer == '}' | |
5355 | || *(input_line_pointer - 1) == '}' | |
5356 | || *(input_line_pointer - 2) == '}') | |
5357 | xg_clear_vinsn (&cur_vinsn); | |
5358 | } | |
5359 | } | |
5360 | ||
5361 | ||
e0001a05 | 5362 | void |
7fa3d080 | 5363 | md_assemble (char *str) |
e0001a05 NC |
5364 | { |
5365 | xtensa_isa isa = xtensa_default_isa; | |
b224e962 | 5366 | char *opname; |
e0001a05 NC |
5367 | unsigned opnamelen; |
5368 | bfd_boolean has_underbar = FALSE; | |
43cd72b9 | 5369 | char *arg_strings[MAX_INSN_ARGS]; |
e0001a05 | 5370 | int num_args; |
e0001a05 | 5371 | TInsn orig_insn; /* Original instruction from the input. */ |
e0001a05 | 5372 | |
e0001a05 NC |
5373 | tinsn_init (&orig_insn); |
5374 | ||
5375 | /* Split off the opcode. */ | |
5376 | opnamelen = strspn (str, "abcdefghijklmnopqrstuvwxyz_/0123456789."); | |
5377 | opname = xmalloc (opnamelen + 1); | |
5378 | memcpy (opname, str, opnamelen); | |
5379 | opname[opnamelen] = '\0'; | |
5380 | ||
5381 | num_args = tokenize_arguments (arg_strings, str + opnamelen); | |
5382 | if (num_args == -1) | |
5383 | { | |
5384 | as_bad (_("syntax error")); | |
5385 | return; | |
5386 | } | |
5387 | ||
5388 | if (xg_translate_idioms (&opname, &num_args, arg_strings)) | |
5389 | return; | |
5390 | ||
5391 | /* Check for an underbar prefix. */ | |
5392 | if (*opname == '_') | |
5393 | { | |
5394 | has_underbar = TRUE; | |
5395 | opname += 1; | |
5396 | } | |
5397 | ||
5398 | orig_insn.insn_type = ITYPE_INSN; | |
5399 | orig_insn.ntok = 0; | |
43cd72b9 | 5400 | orig_insn.is_specific_opcode = (has_underbar || !use_transform ()); |
e0001a05 | 5401 | orig_insn.opcode = xtensa_opcode_lookup (isa, opname); |
28dbbc02 BW |
5402 | |
5403 | /* Special case: Check for "CALLXn.TLS" psuedo op. If found, grab its | |
5404 | extra argument and set the opcode to "CALLXn". */ | |
5405 | if (orig_insn.opcode == XTENSA_UNDEFINED | |
5406 | && strncasecmp (opname, "callx", 5) == 0) | |
5407 | { | |
5408 | unsigned long window_size; | |
5409 | char *suffix; | |
5410 | ||
5411 | window_size = strtoul (opname + 5, &suffix, 10); | |
5412 | if (suffix != opname + 5 | |
5413 | && (window_size == 0 | |
5414 | || window_size == 4 | |
5415 | || window_size == 8 | |
5416 | || window_size == 12) | |
5417 | && strcasecmp (suffix, ".tls") == 0) | |
5418 | { | |
5419 | switch (window_size) | |
5420 | { | |
5421 | case 0: orig_insn.opcode = xtensa_callx0_opcode; break; | |
5422 | case 4: orig_insn.opcode = xtensa_callx4_opcode; break; | |
5423 | case 8: orig_insn.opcode = xtensa_callx8_opcode; break; | |
5424 | case 12: orig_insn.opcode = xtensa_callx12_opcode; break; | |
5425 | } | |
5426 | ||
5427 | if (num_args != 2) | |
5428 | as_bad (_("wrong number of operands for '%s'"), opname); | |
5429 | else | |
5430 | { | |
5431 | bfd_reloc_code_real_type reloc; | |
5432 | char *old_input_line_pointer; | |
19e8f41a | 5433 | expressionS *tok = &orig_insn.extra_arg; |
28dbbc02 BW |
5434 | segT t; |
5435 | ||
5436 | old_input_line_pointer = input_line_pointer; | |
5437 | input_line_pointer = arg_strings[num_args - 1]; | |
5438 | ||
5439 | t = expression (tok); | |
5440 | if (tok->X_op == O_symbol | |
5441 | && ((reloc = xtensa_elf_suffix (&input_line_pointer, tok)) | |
5442 | == BFD_RELOC_XTENSA_TLS_CALL)) | |
5443 | tok->X_op = map_suffix_reloc_to_operator (reloc); | |
5444 | else | |
5445 | as_bad (_("bad relocation expression for '%s'"), opname); | |
5446 | ||
5447 | input_line_pointer = old_input_line_pointer; | |
5448 | num_args -= 1; | |
5449 | } | |
5450 | } | |
5451 | } | |
5452 | ||
19e8f41a BW |
5453 | /* Special case: Check for "j.l" psuedo op. */ |
5454 | if (orig_insn.opcode == XTENSA_UNDEFINED | |
5455 | && strncasecmp (opname, "j.l", 3) == 0) | |
5456 | { | |
5457 | if (num_args != 2) | |
5458 | as_bad (_("wrong number of operands for '%s'"), opname); | |
5459 | else | |
5460 | { | |
5461 | char *old_input_line_pointer; | |
5462 | expressionS *tok = &orig_insn.extra_arg; | |
5463 | ||
5464 | old_input_line_pointer = input_line_pointer; | |
5465 | input_line_pointer = arg_strings[num_args - 1]; | |
5466 | ||
5467 | expression_maybe_register (xtensa_jx_opcode, 0, tok); | |
5468 | input_line_pointer = old_input_line_pointer; | |
5469 | ||
5470 | num_args -= 1; | |
5471 | orig_insn.opcode = xtensa_j_opcode; | |
5472 | } | |
5473 | } | |
5474 | ||
e0001a05 NC |
5475 | if (orig_insn.opcode == XTENSA_UNDEFINED) |
5476 | { | |
43cd72b9 BW |
5477 | xtensa_format fmt = xtensa_format_lookup (isa, opname); |
5478 | if (fmt == XTENSA_UNDEFINED) | |
5479 | { | |
5480 | as_bad (_("unknown opcode or format name '%s'"), opname); | |
5481 | error_reset_cur_vinsn (); | |
5482 | return; | |
5483 | } | |
5484 | if (!cur_vinsn.inside_bundle) | |
5485 | { | |
5486 | as_bad (_("format names only valid inside bundles")); | |
5487 | error_reset_cur_vinsn (); | |
5488 | return; | |
5489 | } | |
5490 | if (cur_vinsn.format != XTENSA_UNDEFINED) | |
5491 | as_warn (_("multiple formats specified for one bundle; using '%s'"), | |
5492 | opname); | |
5493 | cur_vinsn.format = fmt; | |
5494 | free (has_underbar ? opname - 1 : opname); | |
5495 | error_reset_cur_vinsn (); | |
e0001a05 NC |
5496 | return; |
5497 | } | |
5498 | ||
e0001a05 NC |
5499 | /* Parse the arguments. */ |
5500 | if (parse_arguments (&orig_insn, num_args, arg_strings)) | |
5501 | { | |
5502 | as_bad (_("syntax error")); | |
43cd72b9 | 5503 | error_reset_cur_vinsn (); |
e0001a05 NC |
5504 | return; |
5505 | } | |
5506 | ||
5507 | /* Free the opcode and argument strings, now that they've been parsed. */ | |
5508 | free (has_underbar ? opname - 1 : opname); | |
5509 | opname = 0; | |
5510 | while (num_args-- > 0) | |
5511 | free (arg_strings[num_args]); | |
5512 | ||
43cd72b9 BW |
5513 | /* Get expressions for invisible operands. */ |
5514 | if (get_invisible_operands (&orig_insn)) | |
5515 | { | |
5516 | error_reset_cur_vinsn (); | |
5517 | return; | |
5518 | } | |
5519 | ||
e0001a05 NC |
5520 | /* Check for the right number and type of arguments. */ |
5521 | if (tinsn_check_arguments (&orig_insn)) | |
e0001a05 | 5522 | { |
43cd72b9 BW |
5523 | error_reset_cur_vinsn (); |
5524 | return; | |
e0001a05 NC |
5525 | } |
5526 | ||
b224e962 BW |
5527 | /* Record the line number for each TInsn, because a FLIX bundle may be |
5528 | spread across multiple input lines and individual instructions may be | |
5529 | moved around in some cases. */ | |
5530 | orig_insn.loc_directive_seen = dwarf2_loc_directive_seen; | |
5531 | dwarf2_where (&orig_insn.debug_line); | |
5532 | dwarf2_consume_line_info (); | |
c138bc38 | 5533 | |
43cd72b9 BW |
5534 | xg_add_branch_and_loop_targets (&orig_insn); |
5535 | ||
431ad2d0 BW |
5536 | /* Check that immediate value for ENTRY is >= 16. */ |
5537 | if (orig_insn.opcode == xtensa_entry_opcode && orig_insn.ntok >= 3) | |
e0001a05 | 5538 | { |
431ad2d0 BW |
5539 | expressionS *exp = &orig_insn.tok[2]; |
5540 | if (exp->X_op == O_constant && exp->X_add_number < 16) | |
5541 | as_warn (_("entry instruction with stack decrement < 16")); | |
e0001a05 NC |
5542 | } |
5543 | ||
e0001a05 | 5544 | /* Finish it off: |
43cd72b9 BW |
5545 | assemble_tokens (opcode, tok, ntok); |
5546 | expand the tokens from the orig_insn into the | |
5547 | stack of instructions that will not expand | |
e0001a05 | 5548 | unless required at relaxation time. */ |
e0001a05 | 5549 | |
43cd72b9 BW |
5550 | if (!cur_vinsn.inside_bundle) |
5551 | emit_single_op (&orig_insn); | |
5552 | else /* We are inside a bundle. */ | |
e0001a05 | 5553 | { |
43cd72b9 BW |
5554 | cur_vinsn.slots[cur_vinsn.num_slots] = orig_insn; |
5555 | cur_vinsn.num_slots++; | |
5556 | if (*input_line_pointer == '}' | |
5557 | || *(input_line_pointer - 1) == '}' | |
5558 | || *(input_line_pointer - 2) == '}') | |
5559 | finish_vinsn (&cur_vinsn); | |
e0001a05 NC |
5560 | } |
5561 | ||
43cd72b9 BW |
5562 | /* We've just emitted a new instruction so clear the list of labels. */ |
5563 | xtensa_clear_insn_labels (); | |
e0001a05 NC |
5564 | } |
5565 | ||
5566 | ||
43cd72b9 | 5567 | /* HANDLE_ALIGN hook */ |
e0001a05 | 5568 | |
43cd72b9 BW |
5569 | /* For a .align directive, we mark the previous block with the alignment |
5570 | information. This will be placed in the object file in the | |
5571 | property section corresponding to this section. */ | |
e0001a05 | 5572 | |
43cd72b9 | 5573 | void |
7fa3d080 | 5574 | xtensa_handle_align (fragS *fragP) |
43cd72b9 BW |
5575 | { |
5576 | if (linkrelax | |
b08b5071 | 5577 | && ! fragP->tc_frag_data.is_literal |
43cd72b9 BW |
5578 | && (fragP->fr_type == rs_align |
5579 | || fragP->fr_type == rs_align_code) | |
5580 | && fragP->fr_address + fragP->fr_fix > 0 | |
5581 | && fragP->fr_offset > 0 | |
5582 | && now_seg != bss_section) | |
e0001a05 | 5583 | { |
43cd72b9 BW |
5584 | fragP->tc_frag_data.is_align = TRUE; |
5585 | fragP->tc_frag_data.alignment = fragP->fr_offset; | |
e0001a05 NC |
5586 | } |
5587 | ||
43cd72b9 | 5588 | if (fragP->fr_type == rs_align_test) |
e0001a05 | 5589 | { |
43cd72b9 BW |
5590 | int count; |
5591 | count = fragP->fr_next->fr_address - fragP->fr_address - fragP->fr_fix; | |
5592 | if (count != 0) | |
c138bc38 | 5593 | as_bad_where (fragP->fr_file, fragP->fr_line, |
43cd72b9 | 5594 | _("unaligned entry instruction")); |
e0001a05 | 5595 | } |
99ded152 BW |
5596 | |
5597 | if (linkrelax && fragP->fr_type == rs_org) | |
5598 | fragP->fr_subtype = RELAX_ORG; | |
e0001a05 | 5599 | } |
43cd72b9 | 5600 | |
e0001a05 NC |
5601 | |
5602 | /* TC_FRAG_INIT hook */ | |
5603 | ||
5604 | void | |
7fa3d080 | 5605 | xtensa_frag_init (fragS *frag) |
e0001a05 | 5606 | { |
43cd72b9 | 5607 | xtensa_set_frag_assembly_state (frag); |
e0001a05 NC |
5608 | } |
5609 | ||
5610 | ||
5611 | symbolS * | |
7fa3d080 | 5612 | md_undefined_symbol (char *name ATTRIBUTE_UNUSED) |
e0001a05 NC |
5613 | { |
5614 | return NULL; | |
5615 | } | |
5616 | ||
5617 | ||
5618 | /* Round up a section size to the appropriate boundary. */ | |
5619 | ||
5620 | valueT | |
7fa3d080 | 5621 | md_section_align (segT segment ATTRIBUTE_UNUSED, valueT size) |
e0001a05 NC |
5622 | { |
5623 | return size; /* Byte alignment is fine. */ | |
5624 | } | |
5625 | ||
5626 | ||
5627 | long | |
7fa3d080 | 5628 | md_pcrel_from (fixS *fixP) |
e0001a05 NC |
5629 | { |
5630 | char *insn_p; | |
5631 | static xtensa_insnbuf insnbuf = NULL; | |
43cd72b9 | 5632 | static xtensa_insnbuf slotbuf = NULL; |
e0001a05 | 5633 | int opnum; |
43cd72b9 | 5634 | uint32 opnd_value; |
e0001a05 | 5635 | xtensa_opcode opcode; |
43cd72b9 BW |
5636 | xtensa_format fmt; |
5637 | int slot; | |
e0001a05 NC |
5638 | xtensa_isa isa = xtensa_default_isa; |
5639 | valueT addr = fixP->fx_where + fixP->fx_frag->fr_address; | |
43cd72b9 | 5640 | bfd_boolean alt_reloc; |
e0001a05 | 5641 | |
e0001a05 | 5642 | if (fixP->fx_r_type == BFD_RELOC_XTENSA_ASM_EXPAND) |
30f725a1 | 5643 | return 0; |
e0001a05 | 5644 | |
1bbb5f21 BW |
5645 | if (fixP->fx_r_type == BFD_RELOC_32_PCREL) |
5646 | return addr; | |
5647 | ||
e0001a05 | 5648 | if (!insnbuf) |
43cd72b9 BW |
5649 | { |
5650 | insnbuf = xtensa_insnbuf_alloc (isa); | |
5651 | slotbuf = xtensa_insnbuf_alloc (isa); | |
5652 | } | |
e0001a05 NC |
5653 | |
5654 | insn_p = &fixP->fx_frag->fr_literal[fixP->fx_where]; | |
d77b99c9 | 5655 | xtensa_insnbuf_from_chars (isa, insnbuf, (unsigned char *) insn_p, 0); |
43cd72b9 BW |
5656 | fmt = xtensa_format_decode (isa, insnbuf); |
5657 | ||
5658 | if (fmt == XTENSA_UNDEFINED) | |
5659 | as_fatal (_("bad instruction format")); | |
5660 | ||
5661 | if (decode_reloc (fixP->fx_r_type, &slot, &alt_reloc) != 0) | |
5662 | as_fatal (_("invalid relocation")); | |
5663 | ||
5664 | xtensa_format_get_slot (isa, fmt, slot, insnbuf, slotbuf); | |
5665 | opcode = xtensa_opcode_decode (isa, fmt, slot, slotbuf); | |
5666 | ||
30f725a1 BW |
5667 | /* Check for "alternate" relocations (operand not specified). None |
5668 | of the current uses for these are really PC-relative. */ | |
43cd72b9 BW |
5669 | if (alt_reloc || opcode == xtensa_const16_opcode) |
5670 | { | |
5671 | if (opcode != xtensa_l32r_opcode | |
5672 | && opcode != xtensa_const16_opcode) | |
5673 | as_fatal (_("invalid relocation for '%s' instruction"), | |
5674 | xtensa_opcode_name (isa, opcode)); | |
30f725a1 | 5675 | return 0; |
e0001a05 NC |
5676 | } |
5677 | ||
43cd72b9 BW |
5678 | opnum = get_relaxable_immed (opcode); |
5679 | opnd_value = 0; | |
5680 | if (xtensa_operand_is_PCrelative (isa, opcode, opnum) != 1 | |
5681 | || xtensa_operand_do_reloc (isa, opcode, opnum, &opnd_value, addr)) | |
e0001a05 NC |
5682 | { |
5683 | as_bad_where (fixP->fx_file, | |
5684 | fixP->fx_line, | |
5685 | _("invalid relocation for operand %d of '%s'"), | |
5686 | opnum, xtensa_opcode_name (isa, opcode)); | |
30f725a1 | 5687 | return 0; |
e0001a05 | 5688 | } |
43cd72b9 BW |
5689 | return 0 - opnd_value; |
5690 | } | |
5691 | ||
5692 | ||
5693 | /* TC_FORCE_RELOCATION hook */ | |
5694 | ||
5695 | int | |
7fa3d080 | 5696 | xtensa_force_relocation (fixS *fix) |
43cd72b9 BW |
5697 | { |
5698 | switch (fix->fx_r_type) | |
30f725a1 BW |
5699 | { |
5700 | case BFD_RELOC_XTENSA_ASM_EXPAND: | |
43cd72b9 BW |
5701 | case BFD_RELOC_XTENSA_SLOT0_ALT: |
5702 | case BFD_RELOC_XTENSA_SLOT1_ALT: | |
5703 | case BFD_RELOC_XTENSA_SLOT2_ALT: | |
5704 | case BFD_RELOC_XTENSA_SLOT3_ALT: | |
5705 | case BFD_RELOC_XTENSA_SLOT4_ALT: | |
5706 | case BFD_RELOC_XTENSA_SLOT5_ALT: | |
5707 | case BFD_RELOC_XTENSA_SLOT6_ALT: | |
5708 | case BFD_RELOC_XTENSA_SLOT7_ALT: | |
5709 | case BFD_RELOC_XTENSA_SLOT8_ALT: | |
5710 | case BFD_RELOC_XTENSA_SLOT9_ALT: | |
5711 | case BFD_RELOC_XTENSA_SLOT10_ALT: | |
5712 | case BFD_RELOC_XTENSA_SLOT11_ALT: | |
5713 | case BFD_RELOC_XTENSA_SLOT12_ALT: | |
5714 | case BFD_RELOC_XTENSA_SLOT13_ALT: | |
5715 | case BFD_RELOC_XTENSA_SLOT14_ALT: | |
43cd72b9 BW |
5716 | return 1; |
5717 | default: | |
5718 | break; | |
e0001a05 NC |
5719 | } |
5720 | ||
43cd72b9 BW |
5721 | if (linkrelax && fix->fx_addsy |
5722 | && relaxable_section (S_GET_SEGMENT (fix->fx_addsy))) | |
5723 | return 1; | |
5724 | ||
5725 | return generic_force_reloc (fix); | |
5726 | } | |
5727 | ||
5728 | ||
30f725a1 BW |
5729 | /* TC_VALIDATE_FIX_SUB hook */ |
5730 | ||
5731 | int | |
5732 | xtensa_validate_fix_sub (fixS *fix) | |
5733 | { | |
5734 | segT add_symbol_segment, sub_symbol_segment; | |
5735 | ||
5736 | /* The difference of two symbols should be resolved by the assembler when | |
5737 | linkrelax is not set. If the linker may relax the section containing | |
5738 | the symbols, then an Xtensa DIFF relocation must be generated so that | |
5739 | the linker knows to adjust the difference value. */ | |
5740 | if (!linkrelax || fix->fx_addsy == NULL) | |
5741 | return 0; | |
5742 | ||
5743 | /* Make sure both symbols are in the same segment, and that segment is | |
5744 | "normal" and relaxable. If the segment is not "normal", then the | |
5745 | fix is not valid. If the segment is not "relaxable", then the fix | |
5746 | should have been handled earlier. */ | |
5747 | add_symbol_segment = S_GET_SEGMENT (fix->fx_addsy); | |
5748 | if (! SEG_NORMAL (add_symbol_segment) || | |
5749 | ! relaxable_section (add_symbol_segment)) | |
5750 | return 0; | |
5751 | sub_symbol_segment = S_GET_SEGMENT (fix->fx_subsy); | |
5752 | return (sub_symbol_segment == add_symbol_segment); | |
5753 | } | |
5754 | ||
5755 | ||
43cd72b9 BW |
5756 | /* NO_PSEUDO_DOT hook */ |
5757 | ||
5758 | /* This function has nothing to do with pseudo dots, but this is the | |
5759 | nearest macro to where the check needs to take place. FIXME: This | |
5760 | seems wrong. */ | |
5761 | ||
5762 | bfd_boolean | |
7fa3d080 | 5763 | xtensa_check_inside_bundle (void) |
43cd72b9 BW |
5764 | { |
5765 | if (cur_vinsn.inside_bundle && input_line_pointer[-1] == '.') | |
5766 | as_bad (_("directives are not valid inside bundles")); | |
5767 | ||
5768 | /* This function must always return FALSE because it is called via a | |
5769 | macro that has nothing to do with bundling. */ | |
5770 | return FALSE; | |
e0001a05 NC |
5771 | } |
5772 | ||
5773 | ||
43cd72b9 | 5774 | /* md_elf_section_change_hook */ |
e0001a05 NC |
5775 | |
5776 | void | |
7fa3d080 | 5777 | xtensa_elf_section_change_hook (void) |
e0001a05 | 5778 | { |
43cd72b9 BW |
5779 | /* Set up the assembly state. */ |
5780 | if (!frag_now->tc_frag_data.is_assembly_state_set) | |
5781 | xtensa_set_frag_assembly_state (frag_now); | |
e0001a05 NC |
5782 | } |
5783 | ||
5784 | ||
5785 | /* tc_fix_adjustable hook */ | |
5786 | ||
5787 | bfd_boolean | |
7fa3d080 | 5788 | xtensa_fix_adjustable (fixS *fixP) |
e0001a05 NC |
5789 | { |
5790 | /* We need the symbol name for the VTABLE entries. */ | |
5791 | if (fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT | |
5792 | || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY) | |
5793 | return 0; | |
5794 | ||
5795 | return 1; | |
5796 | } | |
5797 | ||
5798 | ||
6a7eedfe BW |
5799 | /* tc_symbol_new_hook */ |
5800 | ||
5801 | symbolS *expr_symbols = NULL; | |
5802 | ||
5803 | void | |
5804 | xtensa_symbol_new_hook (symbolS *sym) | |
5805 | { | |
fb227da0 | 5806 | if (is_leb128_expr && S_GET_SEGMENT (sym) == expr_section) |
6a7eedfe BW |
5807 | { |
5808 | symbol_get_tc (sym)->next_expr_symbol = expr_symbols; | |
5809 | expr_symbols = sym; | |
5810 | } | |
5811 | } | |
5812 | ||
5813 | ||
e0001a05 | 5814 | void |
55cf6793 | 5815 | md_apply_fix (fixS *fixP, valueT *valP, segT seg) |
e0001a05 | 5816 | { |
30f725a1 | 5817 | char *const fixpos = fixP->fx_frag->fr_literal + fixP->fx_where; |
d47d412e | 5818 | valueT val = 0; |
30f725a1 | 5819 | |
e7da6241 BW |
5820 | /* Subtracted symbols are only allowed for a few relocation types, and |
5821 | unless linkrelax is enabled, they should not make it to this point. */ | |
5822 | if (fixP->fx_subsy && !(linkrelax && (fixP->fx_r_type == BFD_RELOC_32 | |
5823 | || fixP->fx_r_type == BFD_RELOC_16 | |
5824 | || fixP->fx_r_type == BFD_RELOC_8))) | |
5825 | as_bad_where (fixP->fx_file, fixP->fx_line, _("expression too complex")); | |
5826 | ||
30f725a1 | 5827 | switch (fixP->fx_r_type) |
e0001a05 | 5828 | { |
1bbb5f21 | 5829 | case BFD_RELOC_32_PCREL: |
30f725a1 BW |
5830 | case BFD_RELOC_32: |
5831 | case BFD_RELOC_16: | |
5832 | case BFD_RELOC_8: | |
e7da6241 | 5833 | if (fixP->fx_subsy) |
30f725a1 BW |
5834 | { |
5835 | switch (fixP->fx_r_type) | |
5836 | { | |
5837 | case BFD_RELOC_8: | |
5838 | fixP->fx_r_type = BFD_RELOC_XTENSA_DIFF8; | |
5839 | break; | |
5840 | case BFD_RELOC_16: | |
5841 | fixP->fx_r_type = BFD_RELOC_XTENSA_DIFF16; | |
5842 | break; | |
5843 | case BFD_RELOC_32: | |
5844 | fixP->fx_r_type = BFD_RELOC_XTENSA_DIFF32; | |
5845 | break; | |
5846 | default: | |
5847 | break; | |
5848 | } | |
e0001a05 | 5849 | |
30f725a1 BW |
5850 | val = (S_GET_VALUE (fixP->fx_addsy) + fixP->fx_offset |
5851 | - S_GET_VALUE (fixP->fx_subsy)); | |
5852 | ||
5853 | /* The difference value gets written out, and the DIFF reloc | |
5854 | identifies the address of the subtracted symbol (i.e., the one | |
5855 | with the lowest address). */ | |
5856 | *valP = val; | |
5857 | fixP->fx_offset -= val; | |
5858 | fixP->fx_subsy = NULL; | |
5859 | } | |
5860 | else if (! fixP->fx_addsy) | |
e0001a05 | 5861 | { |
30f725a1 | 5862 | val = *valP; |
e0001a05 | 5863 | fixP->fx_done = 1; |
30f725a1 | 5864 | } |
d47d412e BW |
5865 | /* fall through */ |
5866 | ||
5867 | case BFD_RELOC_XTENSA_PLT: | |
30f725a1 BW |
5868 | md_number_to_chars (fixpos, val, fixP->fx_size); |
5869 | fixP->fx_no_overflow = 0; /* Use the standard overflow check. */ | |
5870 | break; | |
e0001a05 | 5871 | |
28dbbc02 BW |
5872 | case BFD_RELOC_XTENSA_TLSDESC_FN: |
5873 | case BFD_RELOC_XTENSA_TLSDESC_ARG: | |
5874 | case BFD_RELOC_XTENSA_TLS_TPOFF: | |
5875 | case BFD_RELOC_XTENSA_TLS_DTPOFF: | |
5876 | S_SET_THREAD_LOCAL (fixP->fx_addsy); | |
5877 | md_number_to_chars (fixpos, 0, fixP->fx_size); | |
5878 | fixP->fx_no_overflow = 0; /* Use the standard overflow check. */ | |
5879 | break; | |
5880 | ||
30f725a1 BW |
5881 | case BFD_RELOC_XTENSA_SLOT0_OP: |
5882 | case BFD_RELOC_XTENSA_SLOT1_OP: | |
5883 | case BFD_RELOC_XTENSA_SLOT2_OP: | |
5884 | case BFD_RELOC_XTENSA_SLOT3_OP: | |
5885 | case BFD_RELOC_XTENSA_SLOT4_OP: | |
5886 | case BFD_RELOC_XTENSA_SLOT5_OP: | |
5887 | case BFD_RELOC_XTENSA_SLOT6_OP: | |
5888 | case BFD_RELOC_XTENSA_SLOT7_OP: | |
5889 | case BFD_RELOC_XTENSA_SLOT8_OP: | |
5890 | case BFD_RELOC_XTENSA_SLOT9_OP: | |
5891 | case BFD_RELOC_XTENSA_SLOT10_OP: | |
5892 | case BFD_RELOC_XTENSA_SLOT11_OP: | |
5893 | case BFD_RELOC_XTENSA_SLOT12_OP: | |
5894 | case BFD_RELOC_XTENSA_SLOT13_OP: | |
5895 | case BFD_RELOC_XTENSA_SLOT14_OP: | |
5896 | if (linkrelax) | |
5897 | { | |
5898 | /* Write the tentative value of a PC-relative relocation to a | |
5899 | local symbol into the instruction. The value will be ignored | |
5900 | by the linker, and it makes the object file disassembly | |
5901 | readable when all branch targets are encoded in relocations. */ | |
5902 | ||
9c2799c2 | 5903 | gas_assert (fixP->fx_addsy); |
20ee54e8 | 5904 | if (S_GET_SEGMENT (fixP->fx_addsy) == seg |
30f725a1 BW |
5905 | && !S_FORCE_RELOC (fixP->fx_addsy, 1)) |
5906 | { | |
5907 | val = (S_GET_VALUE (fixP->fx_addsy) + fixP->fx_offset | |
5908 | - md_pcrel_from (fixP)); | |
5909 | (void) xg_apply_fix_value (fixP, val); | |
5910 | } | |
5911 | } | |
5912 | else if (! fixP->fx_addsy) | |
5913 | { | |
5914 | val = *valP; | |
5915 | if (xg_apply_fix_value (fixP, val)) | |
5916 | fixP->fx_done = 1; | |
5917 | } | |
5918 | break; | |
e0001a05 | 5919 | |
30f725a1 | 5920 | case BFD_RELOC_XTENSA_ASM_EXPAND: |
28dbbc02 BW |
5921 | case BFD_RELOC_XTENSA_TLS_FUNC: |
5922 | case BFD_RELOC_XTENSA_TLS_ARG: | |
5923 | case BFD_RELOC_XTENSA_TLS_CALL: | |
30f725a1 BW |
5924 | case BFD_RELOC_XTENSA_SLOT0_ALT: |
5925 | case BFD_RELOC_XTENSA_SLOT1_ALT: | |
5926 | case BFD_RELOC_XTENSA_SLOT2_ALT: | |
5927 | case BFD_RELOC_XTENSA_SLOT3_ALT: | |
5928 | case BFD_RELOC_XTENSA_SLOT4_ALT: | |
5929 | case BFD_RELOC_XTENSA_SLOT5_ALT: | |
5930 | case BFD_RELOC_XTENSA_SLOT6_ALT: | |
5931 | case BFD_RELOC_XTENSA_SLOT7_ALT: | |
5932 | case BFD_RELOC_XTENSA_SLOT8_ALT: | |
5933 | case BFD_RELOC_XTENSA_SLOT9_ALT: | |
5934 | case BFD_RELOC_XTENSA_SLOT10_ALT: | |
5935 | case BFD_RELOC_XTENSA_SLOT11_ALT: | |
5936 | case BFD_RELOC_XTENSA_SLOT12_ALT: | |
5937 | case BFD_RELOC_XTENSA_SLOT13_ALT: | |
5938 | case BFD_RELOC_XTENSA_SLOT14_ALT: | |
5939 | /* These all need to be resolved at link-time. Do nothing now. */ | |
5940 | break; | |
e0001a05 | 5941 | |
30f725a1 BW |
5942 | case BFD_RELOC_VTABLE_INHERIT: |
5943 | case BFD_RELOC_VTABLE_ENTRY: | |
5944 | fixP->fx_done = 0; | |
5945 | break; | |
e0001a05 | 5946 | |
30f725a1 BW |
5947 | default: |
5948 | as_bad (_("unhandled local relocation fix %s"), | |
5949 | bfd_get_reloc_code_name (fixP->fx_r_type)); | |
e0001a05 NC |
5950 | } |
5951 | } | |
5952 | ||
5953 | ||
5954 | char * | |
7fa3d080 | 5955 | md_atof (int type, char *litP, int *sizeP) |
e0001a05 | 5956 | { |
499ac353 | 5957 | return ieee_md_atof (type, litP, sizeP, target_big_endian); |
e0001a05 NC |
5958 | } |
5959 | ||
5960 | ||
5961 | int | |
7fa3d080 | 5962 | md_estimate_size_before_relax (fragS *fragP, segT seg ATTRIBUTE_UNUSED) |
e0001a05 | 5963 | { |
34e41783 | 5964 | return total_frag_text_expansion (fragP); |
e0001a05 NC |
5965 | } |
5966 | ||
5967 | ||
5968 | /* Translate internal representation of relocation info to BFD target | |
5969 | format. */ | |
5970 | ||
5971 | arelent * | |
30f725a1 | 5972 | tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp) |
e0001a05 NC |
5973 | { |
5974 | arelent *reloc; | |
5975 | ||
5976 | reloc = (arelent *) xmalloc (sizeof (arelent)); | |
5977 | reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *)); | |
5978 | *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy); | |
5979 | reloc->address = fixp->fx_frag->fr_address + fixp->fx_where; | |
5980 | ||
5981 | /* Make sure none of our internal relocations make it this far. | |
5982 | They'd better have been fully resolved by this point. */ | |
9c2799c2 | 5983 | gas_assert ((int) fixp->fx_r_type > 0); |
e0001a05 | 5984 | |
30f725a1 | 5985 | reloc->addend = fixp->fx_offset; |
43cd72b9 | 5986 | |
e0001a05 NC |
5987 | reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type); |
5988 | if (reloc->howto == NULL) | |
5989 | { | |
5990 | as_bad_where (fixp->fx_file, fixp->fx_line, | |
5991 | _("cannot represent `%s' relocation in object file"), | |
5992 | bfd_get_reloc_code_name (fixp->fx_r_type)); | |
43cd72b9 BW |
5993 | free (reloc->sym_ptr_ptr); |
5994 | free (reloc); | |
e0001a05 NC |
5995 | return NULL; |
5996 | } | |
5997 | ||
5998 | if (!fixp->fx_pcrel != !reloc->howto->pc_relative) | |
1bbb5f21 | 5999 | as_fatal (_("internal error; cannot generate `%s' relocation"), |
43cd72b9 | 6000 | bfd_get_reloc_code_name (fixp->fx_r_type)); |
e0001a05 | 6001 | |
e0001a05 NC |
6002 | return reloc; |
6003 | } | |
6004 | ||
7fa3d080 BW |
6005 | \f |
6006 | /* Checks for resource conflicts between instructions. */ | |
6007 | ||
c138bc38 BW |
6008 | /* The func unit stuff could be implemented as bit-vectors rather |
6009 | than the iterative approach here. If it ends up being too | |
7fa3d080 BW |
6010 | slow, we will switch it. */ |
6011 | ||
c138bc38 | 6012 | resource_table * |
7fa3d080 BW |
6013 | new_resource_table (void *data, |
6014 | int cycles, | |
6015 | int nu, | |
6016 | unit_num_copies_func uncf, | |
6017 | opcode_num_units_func onuf, | |
6018 | opcode_funcUnit_use_unit_func ouuf, | |
6019 | opcode_funcUnit_use_stage_func ousf) | |
6020 | { | |
6021 | int i; | |
6022 | resource_table *rt = (resource_table *) xmalloc (sizeof (resource_table)); | |
6023 | rt->data = data; | |
6024 | rt->cycles = cycles; | |
6025 | rt->allocated_cycles = cycles; | |
6026 | rt->num_units = nu; | |
6027 | rt->unit_num_copies = uncf; | |
6028 | rt->opcode_num_units = onuf; | |
6029 | rt->opcode_unit_use = ouuf; | |
6030 | rt->opcode_unit_stage = ousf; | |
6031 | ||
0bf60745 | 6032 | rt->units = (unsigned char **) xcalloc (cycles, sizeof (unsigned char *)); |
7fa3d080 | 6033 | for (i = 0; i < cycles; i++) |
0bf60745 | 6034 | rt->units[i] = (unsigned char *) xcalloc (nu, sizeof (unsigned char)); |
7fa3d080 BW |
6035 | |
6036 | return rt; | |
6037 | } | |
6038 | ||
6039 | ||
c138bc38 | 6040 | void |
7fa3d080 BW |
6041 | clear_resource_table (resource_table *rt) |
6042 | { | |
6043 | int i, j; | |
6044 | for (i = 0; i < rt->allocated_cycles; i++) | |
6045 | for (j = 0; j < rt->num_units; j++) | |
6046 | rt->units[i][j] = 0; | |
6047 | } | |
6048 | ||
6049 | ||
6050 | /* We never shrink it, just fake it into thinking so. */ | |
6051 | ||
c138bc38 | 6052 | void |
7fa3d080 BW |
6053 | resize_resource_table (resource_table *rt, int cycles) |
6054 | { | |
6055 | int i, old_cycles; | |
6056 | ||
6057 | rt->cycles = cycles; | |
6058 | if (cycles <= rt->allocated_cycles) | |
6059 | return; | |
6060 | ||
6061 | old_cycles = rt->allocated_cycles; | |
6062 | rt->allocated_cycles = cycles; | |
6063 | ||
0bf60745 BW |
6064 | rt->units = xrealloc (rt->units, |
6065 | rt->allocated_cycles * sizeof (unsigned char *)); | |
7fa3d080 | 6066 | for (i = 0; i < old_cycles; i++) |
0bf60745 BW |
6067 | rt->units[i] = xrealloc (rt->units[i], |
6068 | rt->num_units * sizeof (unsigned char)); | |
7fa3d080 | 6069 | for (i = old_cycles; i < cycles; i++) |
0bf60745 | 6070 | rt->units[i] = xcalloc (rt->num_units, sizeof (unsigned char)); |
7fa3d080 BW |
6071 | } |
6072 | ||
6073 | ||
c138bc38 | 6074 | bfd_boolean |
7fa3d080 BW |
6075 | resources_available (resource_table *rt, xtensa_opcode opcode, int cycle) |
6076 | { | |
6077 | int i; | |
6078 | int uses = (rt->opcode_num_units) (rt->data, opcode); | |
6079 | ||
c138bc38 | 6080 | for (i = 0; i < uses; i++) |
7fa3d080 BW |
6081 | { |
6082 | xtensa_funcUnit unit = (rt->opcode_unit_use) (rt->data, opcode, i); | |
6083 | int stage = (rt->opcode_unit_stage) (rt->data, opcode, i); | |
6084 | int copies_in_use = rt->units[stage + cycle][unit]; | |
6085 | int copies = (rt->unit_num_copies) (rt->data, unit); | |
6086 | if (copies_in_use >= copies) | |
6087 | return FALSE; | |
6088 | } | |
6089 | return TRUE; | |
6090 | } | |
7fa3d080 | 6091 | |
c138bc38 BW |
6092 | |
6093 | void | |
7fa3d080 BW |
6094 | reserve_resources (resource_table *rt, xtensa_opcode opcode, int cycle) |
6095 | { | |
6096 | int i; | |
6097 | int uses = (rt->opcode_num_units) (rt->data, opcode); | |
6098 | ||
c138bc38 | 6099 | for (i = 0; i < uses; i++) |
7fa3d080 BW |
6100 | { |
6101 | xtensa_funcUnit unit = (rt->opcode_unit_use) (rt->data, opcode, i); | |
6102 | int stage = (rt->opcode_unit_stage) (rt->data, opcode, i); | |
c138bc38 BW |
6103 | /* Note that this allows resources to be oversubscribed. That's |
6104 | essential to the way the optional scheduler works. | |
7fa3d080 BW |
6105 | resources_available reports when a resource is over-subscribed, |
6106 | so it's easy to tell. */ | |
6107 | rt->units[stage + cycle][unit]++; | |
6108 | } | |
6109 | } | |
6110 | ||
6111 | ||
c138bc38 | 6112 | void |
7fa3d080 BW |
6113 | release_resources (resource_table *rt, xtensa_opcode opcode, int cycle) |
6114 | { | |
6115 | int i; | |
6116 | int uses = (rt->opcode_num_units) (rt->data, opcode); | |
6117 | ||
c138bc38 | 6118 | for (i = 0; i < uses; i++) |
7fa3d080 BW |
6119 | { |
6120 | xtensa_funcUnit unit = (rt->opcode_unit_use) (rt->data, opcode, i); | |
6121 | int stage = (rt->opcode_unit_stage) (rt->data, opcode, i); | |
9c2799c2 | 6122 | gas_assert (rt->units[stage + cycle][unit] > 0); |
7fa3d080 | 6123 | rt->units[stage + cycle][unit]--; |
7fa3d080 BW |
6124 | } |
6125 | } | |
c138bc38 | 6126 | |
7fa3d080 BW |
6127 | |
6128 | /* Wrapper functions make parameterized resource reservation | |
6129 | more convenient. */ | |
6130 | ||
c138bc38 | 6131 | int |
7fa3d080 BW |
6132 | opcode_funcUnit_use_unit (void *data, xtensa_opcode opcode, int idx) |
6133 | { | |
6134 | xtensa_funcUnit_use *use = xtensa_opcode_funcUnit_use (data, opcode, idx); | |
c138bc38 | 6135 | return use->unit; |
7fa3d080 BW |
6136 | } |
6137 | ||
6138 | ||
c138bc38 | 6139 | int |
7fa3d080 BW |
6140 | opcode_funcUnit_use_stage (void *data, xtensa_opcode opcode, int idx) |
6141 | { | |
6142 | xtensa_funcUnit_use *use = xtensa_opcode_funcUnit_use (data, opcode, idx); | |
6143 | return use->stage; | |
6144 | } | |
6145 | ||
6146 | ||
6147 | /* Note that this function does not check issue constraints, but | |
6148 | solely whether the hardware is available to execute the given | |
c138bc38 | 6149 | instructions together. It also doesn't check if the tinsns |
7fa3d080 | 6150 | write the same state, or access the same tieports. That is |
a1ace8d8 | 6151 | checked by check_t1_t2_reads_and_writes. */ |
7fa3d080 BW |
6152 | |
6153 | static bfd_boolean | |
6154 | resources_conflict (vliw_insn *vinsn) | |
6155 | { | |
6156 | int i; | |
6157 | static resource_table *rt = NULL; | |
6158 | ||
6159 | /* This is the most common case by far. Optimize it. */ | |
6160 | if (vinsn->num_slots == 1) | |
6161 | return FALSE; | |
43cd72b9 | 6162 | |
c138bc38 | 6163 | if (rt == NULL) |
7fa3d080 BW |
6164 | { |
6165 | xtensa_isa isa = xtensa_default_isa; | |
6166 | rt = new_resource_table | |
77cba8a3 | 6167 | (isa, xtensa_num_pipe_stages, |
7fa3d080 BW |
6168 | xtensa_isa_num_funcUnits (isa), |
6169 | (unit_num_copies_func) xtensa_funcUnit_num_copies, | |
6170 | (opcode_num_units_func) xtensa_opcode_num_funcUnit_uses, | |
6171 | opcode_funcUnit_use_unit, | |
6172 | opcode_funcUnit_use_stage); | |
6173 | } | |
43cd72b9 | 6174 | |
7fa3d080 | 6175 | clear_resource_table (rt); |
43cd72b9 | 6176 | |
7fa3d080 BW |
6177 | for (i = 0; i < vinsn->num_slots; i++) |
6178 | { | |
6179 | if (!resources_available (rt, vinsn->slots[i].opcode, 0)) | |
6180 | return TRUE; | |
6181 | reserve_resources (rt, vinsn->slots[i].opcode, 0); | |
6182 | } | |
e0001a05 | 6183 | |
7fa3d080 BW |
6184 | return FALSE; |
6185 | } | |
e0001a05 | 6186 | |
7fa3d080 BW |
6187 | \f |
6188 | /* finish_vinsn, emit_single_op and helper functions. */ | |
e0001a05 | 6189 | |
7fa3d080 BW |
6190 | static bfd_boolean find_vinsn_conflicts (vliw_insn *); |
6191 | static xtensa_format xg_find_narrowest_format (vliw_insn *); | |
7fa3d080 | 6192 | static void xg_assemble_vliw_tokens (vliw_insn *); |
e0001a05 NC |
6193 | |
6194 | ||
43cd72b9 BW |
6195 | /* We have reached the end of a bundle; emit into the frag. */ |
6196 | ||
e0001a05 | 6197 | static void |
7fa3d080 | 6198 | finish_vinsn (vliw_insn *vinsn) |
e0001a05 | 6199 | { |
43cd72b9 BW |
6200 | IStack slotstack; |
6201 | int i; | |
6202 | char *file_name; | |
d77b99c9 | 6203 | unsigned line; |
e0001a05 | 6204 | |
43cd72b9 | 6205 | if (find_vinsn_conflicts (vinsn)) |
a1ace8d8 BW |
6206 | { |
6207 | xg_clear_vinsn (vinsn); | |
6208 | return; | |
6209 | } | |
43cd72b9 BW |
6210 | |
6211 | /* First, find a format that works. */ | |
6212 | if (vinsn->format == XTENSA_UNDEFINED) | |
6213 | vinsn->format = xg_find_narrowest_format (vinsn); | |
6214 | ||
19fc3723 SA |
6215 | if (xtensa_format_num_slots (xtensa_default_isa, vinsn->format) > 1 |
6216 | && produce_flix == FLIX_NONE) | |
6217 | { | |
6218 | as_bad (_("The option \"--no-allow-flix\" prohibits multi-slot flix.")); | |
6219 | xg_clear_vinsn (vinsn); | |
6220 | return; | |
6221 | } | |
6222 | ||
43cd72b9 BW |
6223 | if (vinsn->format == XTENSA_UNDEFINED) |
6224 | { | |
6225 | as_where (&file_name, &line); | |
6226 | as_bad_where (file_name, line, | |
6227 | _("couldn't find a valid instruction format")); | |
6228 | fprintf (stderr, _(" ops were: ")); | |
6229 | for (i = 0; i < vinsn->num_slots; i++) | |
6230 | fprintf (stderr, _(" %s;"), | |
6231 | xtensa_opcode_name (xtensa_default_isa, | |
6232 | vinsn->slots[i].opcode)); | |
6233 | fprintf (stderr, _("\n")); | |
6234 | xg_clear_vinsn (vinsn); | |
6235 | return; | |
6236 | } | |
6237 | ||
6238 | if (vinsn->num_slots | |
6239 | != xtensa_format_num_slots (xtensa_default_isa, vinsn->format)) | |
e0001a05 | 6240 | { |
43cd72b9 BW |
6241 | as_bad (_("format '%s' allows %d slots, but there are %d opcodes"), |
6242 | xtensa_format_name (xtensa_default_isa, vinsn->format), | |
6243 | xtensa_format_num_slots (xtensa_default_isa, vinsn->format), | |
6244 | vinsn->num_slots); | |
6245 | xg_clear_vinsn (vinsn); | |
6246 | return; | |
6247 | } | |
e0001a05 | 6248 | |
c138bc38 | 6249 | if (resources_conflict (vinsn)) |
43cd72b9 BW |
6250 | { |
6251 | as_where (&file_name, &line); | |
6252 | as_bad_where (file_name, line, _("illegal resource usage in bundle")); | |
6253 | fprintf (stderr, " ops were: "); | |
6254 | for (i = 0; i < vinsn->num_slots; i++) | |
6255 | fprintf (stderr, " %s;", | |
6256 | xtensa_opcode_name (xtensa_default_isa, | |
6257 | vinsn->slots[i].opcode)); | |
6258 | fprintf (stderr, "\n"); | |
6259 | xg_clear_vinsn (vinsn); | |
6260 | return; | |
6261 | } | |
6262 | ||
6263 | for (i = 0; i < vinsn->num_slots; i++) | |
6264 | { | |
6265 | if (vinsn->slots[i].opcode != XTENSA_UNDEFINED) | |
e0001a05 | 6266 | { |
43cd72b9 BW |
6267 | symbolS *lit_sym = NULL; |
6268 | int j; | |
6269 | bfd_boolean e = FALSE; | |
6270 | bfd_boolean saved_density = density_supported; | |
6271 | ||
6272 | /* We don't want to narrow ops inside multi-slot bundles. */ | |
6273 | if (vinsn->num_slots > 1) | |
6274 | density_supported = FALSE; | |
6275 | ||
6276 | istack_init (&slotstack); | |
6277 | if (vinsn->slots[i].opcode == xtensa_nop_opcode) | |
e0001a05 | 6278 | { |
43cd72b9 BW |
6279 | vinsn->slots[i].opcode = |
6280 | xtensa_format_slot_nop_opcode (xtensa_default_isa, | |
6281 | vinsn->format, i); | |
6282 | vinsn->slots[i].ntok = 0; | |
6283 | } | |
e0001a05 | 6284 | |
43cd72b9 BW |
6285 | if (xg_expand_assembly_insn (&slotstack, &vinsn->slots[i])) |
6286 | { | |
6287 | e = TRUE; | |
6288 | continue; | |
e0001a05 | 6289 | } |
e0001a05 | 6290 | |
43cd72b9 | 6291 | density_supported = saved_density; |
e0001a05 | 6292 | |
43cd72b9 BW |
6293 | if (e) |
6294 | { | |
6295 | xg_clear_vinsn (vinsn); | |
6296 | return; | |
6297 | } | |
e0001a05 | 6298 | |
0fa77c95 | 6299 | for (j = 0; j < slotstack.ninsn; j++) |
43cd72b9 BW |
6300 | { |
6301 | TInsn *insn = &slotstack.insn[j]; | |
6302 | if (insn->insn_type == ITYPE_LITERAL) | |
6303 | { | |
9c2799c2 | 6304 | gas_assert (lit_sym == NULL); |
43cd72b9 BW |
6305 | lit_sym = xg_assemble_literal (insn); |
6306 | } | |
6307 | else | |
6308 | { | |
9c2799c2 | 6309 | gas_assert (insn->insn_type == ITYPE_INSN); |
43cd72b9 BW |
6310 | if (lit_sym) |
6311 | xg_resolve_literals (insn, lit_sym); | |
0fa77c95 BW |
6312 | if (j != slotstack.ninsn - 1) |
6313 | emit_single_op (insn); | |
43cd72b9 BW |
6314 | } |
6315 | } | |
6316 | ||
6317 | if (vinsn->num_slots > 1) | |
6318 | { | |
6319 | if (opcode_fits_format_slot | |
6320 | (slotstack.insn[slotstack.ninsn - 1].opcode, | |
6321 | vinsn->format, i)) | |
6322 | { | |
6323 | vinsn->slots[i] = slotstack.insn[slotstack.ninsn - 1]; | |
6324 | } | |
6325 | else | |
6326 | { | |
b2d179be | 6327 | emit_single_op (&slotstack.insn[slotstack.ninsn - 1]); |
43cd72b9 BW |
6328 | if (vinsn->format == XTENSA_UNDEFINED) |
6329 | vinsn->slots[i].opcode = xtensa_nop_opcode; | |
6330 | else | |
c138bc38 | 6331 | vinsn->slots[i].opcode |
43cd72b9 BW |
6332 | = xtensa_format_slot_nop_opcode (xtensa_default_isa, |
6333 | vinsn->format, i); | |
6334 | ||
6335 | vinsn->slots[i].ntok = 0; | |
6336 | } | |
6337 | } | |
6338 | else | |
6339 | { | |
6340 | vinsn->slots[0] = slotstack.insn[slotstack.ninsn - 1]; | |
6341 | vinsn->format = XTENSA_UNDEFINED; | |
6342 | } | |
6343 | } | |
6344 | } | |
6345 | ||
6346 | /* Now check resource conflicts on the modified bundle. */ | |
c138bc38 | 6347 | if (resources_conflict (vinsn)) |
43cd72b9 BW |
6348 | { |
6349 | as_where (&file_name, &line); | |
6350 | as_bad_where (file_name, line, _("illegal resource usage in bundle")); | |
6351 | fprintf (stderr, " ops were: "); | |
6352 | for (i = 0; i < vinsn->num_slots; i++) | |
6353 | fprintf (stderr, " %s;", | |
6354 | xtensa_opcode_name (xtensa_default_isa, | |
6355 | vinsn->slots[i].opcode)); | |
6356 | fprintf (stderr, "\n"); | |
6357 | xg_clear_vinsn (vinsn); | |
6358 | return; | |
6359 | } | |
6360 | ||
6361 | /* First, find a format that works. */ | |
6362 | if (vinsn->format == XTENSA_UNDEFINED) | |
6363 | vinsn->format = xg_find_narrowest_format (vinsn); | |
6364 | ||
6365 | xg_assemble_vliw_tokens (vinsn); | |
6366 | ||
6367 | xg_clear_vinsn (vinsn); | |
6368 | } | |
6369 | ||
6370 | ||
6371 | /* Given an vliw instruction, what conflicts are there in register | |
6372 | usage and in writes to states and queues? | |
6373 | ||
6374 | This function does two things: | |
6375 | 1. Reports an error when a vinsn contains illegal combinations | |
6376 | of writes to registers states or queues. | |
6377 | 2. Marks individual tinsns as not relaxable if the combination | |
6378 | contains antidependencies. | |
6379 | ||
6380 | Job 2 handles things like swap semantics in instructions that need | |
6381 | to be relaxed. For example, | |
6382 | ||
6383 | addi a0, a1, 100000 | |
6384 | ||
6385 | normally would be relaxed to | |
6386 | ||
6387 | l32r a0, some_label | |
6388 | add a0, a1, a0 | |
6389 | ||
6390 | _but_, if the above instruction is bundled with an a0 reader, e.g., | |
6391 | ||
6392 | { addi a0, a1, 10000 ; add a2, a0, a4 ; } | |
6393 | ||
6394 | then we can't relax it into | |
6395 | ||
6396 | l32r a0, some_label | |
6397 | { add a0, a1, a0 ; add a2, a0, a4 ; } | |
6398 | ||
6399 | because the value of a0 is trashed before the second add can read it. */ | |
6400 | ||
7fa3d080 BW |
6401 | static char check_t1_t2_reads_and_writes (TInsn *, TInsn *); |
6402 | ||
43cd72b9 | 6403 | static bfd_boolean |
7fa3d080 | 6404 | find_vinsn_conflicts (vliw_insn *vinsn) |
43cd72b9 BW |
6405 | { |
6406 | int i, j; | |
6407 | int branches = 0; | |
6408 | xtensa_isa isa = xtensa_default_isa; | |
6409 | ||
9c2799c2 | 6410 | gas_assert (!past_xtensa_end); |
43cd72b9 BW |
6411 | |
6412 | for (i = 0 ; i < vinsn->num_slots; i++) | |
6413 | { | |
6414 | TInsn *op1 = &vinsn->slots[i]; | |
6415 | if (op1->is_specific_opcode) | |
6416 | op1->keep_wide = TRUE; | |
6417 | else | |
6418 | op1->keep_wide = FALSE; | |
6419 | } | |
6420 | ||
6421 | for (i = 0 ; i < vinsn->num_slots; i++) | |
6422 | { | |
6423 | TInsn *op1 = &vinsn->slots[i]; | |
6424 | ||
6425 | if (xtensa_opcode_is_branch (isa, op1->opcode) == 1) | |
6426 | branches++; | |
6427 | ||
6428 | for (j = 0; j < vinsn->num_slots; j++) | |
6429 | { | |
6430 | if (i != j) | |
6431 | { | |
6432 | TInsn *op2 = &vinsn->slots[j]; | |
6433 | char conflict_type = check_t1_t2_reads_and_writes (op1, op2); | |
6434 | switch (conflict_type) | |
6435 | { | |
6436 | case 'c': | |
6437 | as_bad (_("opcodes '%s' (slot %d) and '%s' (slot %d) write the same register"), | |
6438 | xtensa_opcode_name (isa, op1->opcode), i, | |
6439 | xtensa_opcode_name (isa, op2->opcode), j); | |
6440 | return TRUE; | |
6441 | case 'd': | |
6442 | as_bad (_("opcodes '%s' (slot %d) and '%s' (slot %d) write the same state"), | |
6443 | xtensa_opcode_name (isa, op1->opcode), i, | |
6444 | xtensa_opcode_name (isa, op2->opcode), j); | |
6445 | return TRUE; | |
6446 | case 'e': | |
53dfbcc7 | 6447 | as_bad (_("opcodes '%s' (slot %d) and '%s' (slot %d) write the same port"), |
43cd72b9 BW |
6448 | xtensa_opcode_name (isa, op1->opcode), i, |
6449 | xtensa_opcode_name (isa, op2->opcode), j); | |
6450 | return TRUE; | |
6451 | case 'f': | |
53dfbcc7 | 6452 | as_bad (_("opcodes '%s' (slot %d) and '%s' (slot %d) both have volatile port accesses"), |
43cd72b9 BW |
6453 | xtensa_opcode_name (isa, op1->opcode), i, |
6454 | xtensa_opcode_name (isa, op2->opcode), j); | |
6455 | return TRUE; | |
6456 | default: | |
6457 | /* Everything is OK. */ | |
6458 | break; | |
6459 | } | |
6460 | op2->is_specific_opcode = (op2->is_specific_opcode | |
6461 | || conflict_type == 'a'); | |
6462 | } | |
6463 | } | |
6464 | } | |
6465 | ||
6466 | if (branches > 1) | |
6467 | { | |
6468 | as_bad (_("multiple branches or jumps in the same bundle")); | |
6469 | return TRUE; | |
6470 | } | |
6471 | ||
6472 | return FALSE; | |
6473 | } | |
6474 | ||
6475 | ||
a1ace8d8 | 6476 | /* Check how the state used by t1 and t2 relate. |
43cd72b9 BW |
6477 | Cases found are: |
6478 | ||
6479 | case A: t1 reads a register t2 writes (an antidependency within a bundle) | |
6480 | case B: no relationship between what is read and written (both could | |
6481 | read the same reg though) | |
c138bc38 | 6482 | case C: t1 writes a register t2 writes (a register conflict within a |
43cd72b9 BW |
6483 | bundle) |
6484 | case D: t1 writes a state that t2 also writes | |
6485 | case E: t1 writes a tie queue that t2 also writes | |
a1ace8d8 | 6486 | case F: two volatile queue accesses |
43cd72b9 BW |
6487 | */ |
6488 | ||
6489 | static char | |
7fa3d080 | 6490 | check_t1_t2_reads_and_writes (TInsn *t1, TInsn *t2) |
43cd72b9 BW |
6491 | { |
6492 | xtensa_isa isa = xtensa_default_isa; | |
6493 | xtensa_regfile t1_regfile, t2_regfile; | |
6494 | int t1_reg, t2_reg; | |
6495 | int t1_base_reg, t1_last_reg; | |
6496 | int t2_base_reg, t2_last_reg; | |
6497 | char t1_inout, t2_inout; | |
6498 | int i, j; | |
6499 | char conflict = 'b'; | |
6500 | int t1_states; | |
6501 | int t2_states; | |
6502 | int t1_interfaces; | |
6503 | int t2_interfaces; | |
6504 | bfd_boolean t1_volatile = FALSE; | |
6505 | bfd_boolean t2_volatile = FALSE; | |
6506 | ||
6507 | /* Check registers. */ | |
6508 | for (j = 0; j < t2->ntok; j++) | |
6509 | { | |
6510 | if (xtensa_operand_is_register (isa, t2->opcode, j) != 1) | |
6511 | continue; | |
6512 | ||
6513 | t2_regfile = xtensa_operand_regfile (isa, t2->opcode, j); | |
6514 | t2_base_reg = t2->tok[j].X_add_number; | |
6515 | t2_last_reg = t2_base_reg + xtensa_operand_num_regs (isa, t2->opcode, j); | |
6516 | ||
6517 | for (i = 0; i < t1->ntok; i++) | |
6518 | { | |
6519 | if (xtensa_operand_is_register (isa, t1->opcode, i) != 1) | |
6520 | continue; | |
6521 | ||
6522 | t1_regfile = xtensa_operand_regfile (isa, t1->opcode, i); | |
6523 | ||
6524 | if (t1_regfile != t2_regfile) | |
6525 | continue; | |
6526 | ||
6527 | t1_inout = xtensa_operand_inout (isa, t1->opcode, i); | |
6528 | t2_inout = xtensa_operand_inout (isa, t2->opcode, j); | |
6529 | ||
6530 | if (xtensa_operand_is_known_reg (isa, t1->opcode, i) == 0 | |
6531 | || xtensa_operand_is_known_reg (isa, t2->opcode, j) == 0) | |
6532 | { | |
6533 | if (t1_inout == 'm' || t1_inout == 'o' | |
6534 | || t2_inout == 'm' || t2_inout == 'o') | |
6535 | { | |
6536 | conflict = 'a'; | |
6537 | continue; | |
6538 | } | |
6539 | } | |
6540 | ||
6541 | t1_base_reg = t1->tok[i].X_add_number; | |
6542 | t1_last_reg = (t1_base_reg | |
6543 | + xtensa_operand_num_regs (isa, t1->opcode, i)); | |
6544 | ||
6545 | for (t1_reg = t1_base_reg; t1_reg < t1_last_reg; t1_reg++) | |
6546 | { | |
6547 | for (t2_reg = t2_base_reg; t2_reg < t2_last_reg; t2_reg++) | |
6548 | { | |
6549 | if (t1_reg != t2_reg) | |
6550 | continue; | |
6551 | ||
6552 | if (t2_inout == 'i' && (t1_inout == 'm' || t1_inout == 'o')) | |
7fa3d080 BW |
6553 | { |
6554 | conflict = 'a'; | |
6555 | continue; | |
6556 | } | |
43cd72b9 | 6557 | |
7fa3d080 BW |
6558 | if (t1_inout == 'i' && (t2_inout == 'm' || t2_inout == 'o')) |
6559 | { | |
6560 | conflict = 'a'; | |
6561 | continue; | |
6562 | } | |
43cd72b9 | 6563 | |
7fa3d080 BW |
6564 | if (t1_inout != 'i' && t2_inout != 'i') |
6565 | return 'c'; | |
6566 | } | |
6567 | } | |
6568 | } | |
6569 | } | |
43cd72b9 | 6570 | |
7fa3d080 BW |
6571 | /* Check states. */ |
6572 | t1_states = xtensa_opcode_num_stateOperands (isa, t1->opcode); | |
6573 | t2_states = xtensa_opcode_num_stateOperands (isa, t2->opcode); | |
6574 | for (j = 0; j < t2_states; j++) | |
43cd72b9 | 6575 | { |
7fa3d080 BW |
6576 | xtensa_state t2_so = xtensa_stateOperand_state (isa, t2->opcode, j); |
6577 | t2_inout = xtensa_stateOperand_inout (isa, t2->opcode, j); | |
6578 | for (i = 0; i < t1_states; i++) | |
6579 | { | |
6580 | xtensa_state t1_so = xtensa_stateOperand_state (isa, t1->opcode, i); | |
6581 | t1_inout = xtensa_stateOperand_inout (isa, t1->opcode, i); | |
1fa3cd83 | 6582 | if (t1_so != t2_so || xtensa_state_is_shared_or (isa, t1_so) == 1) |
7fa3d080 | 6583 | continue; |
43cd72b9 | 6584 | |
7fa3d080 BW |
6585 | if (t2_inout == 'i' && (t1_inout == 'm' || t1_inout == 'o')) |
6586 | { | |
6587 | conflict = 'a'; | |
6588 | continue; | |
6589 | } | |
c138bc38 | 6590 | |
7fa3d080 BW |
6591 | if (t1_inout == 'i' && (t2_inout == 'm' || t2_inout == 'o')) |
6592 | { | |
6593 | conflict = 'a'; | |
6594 | continue; | |
6595 | } | |
c138bc38 | 6596 | |
7fa3d080 BW |
6597 | if (t1_inout != 'i' && t2_inout != 'i') |
6598 | return 'd'; | |
c138bc38 | 6599 | } |
7fa3d080 | 6600 | } |
43cd72b9 | 6601 | |
7fa3d080 BW |
6602 | /* Check tieports. */ |
6603 | t1_interfaces = xtensa_opcode_num_interfaceOperands (isa, t1->opcode); | |
6604 | t2_interfaces = xtensa_opcode_num_interfaceOperands (isa, t2->opcode); | |
c138bc38 | 6605 | for (j = 0; j < t2_interfaces; j++) |
43cd72b9 | 6606 | { |
7fa3d080 BW |
6607 | xtensa_interface t2_int |
6608 | = xtensa_interfaceOperand_interface (isa, t2->opcode, j); | |
a1ace8d8 BW |
6609 | int t2_class = xtensa_interface_class_id (isa, t2_int); |
6610 | ||
53dfbcc7 | 6611 | t2_inout = xtensa_interface_inout (isa, t2_int); |
a1ace8d8 | 6612 | if (xtensa_interface_has_side_effect (isa, t2_int) == 1) |
7fa3d080 | 6613 | t2_volatile = TRUE; |
a1ace8d8 | 6614 | |
7fa3d080 BW |
6615 | for (i = 0; i < t1_interfaces; i++) |
6616 | { | |
6617 | xtensa_interface t1_int | |
6618 | = xtensa_interfaceOperand_interface (isa, t1->opcode, j); | |
2eccd1b4 | 6619 | int t1_class = xtensa_interface_class_id (isa, t1_int); |
a1ace8d8 | 6620 | |
53dfbcc7 | 6621 | t1_inout = xtensa_interface_inout (isa, t1_int); |
a1ace8d8 | 6622 | if (xtensa_interface_has_side_effect (isa, t1_int) == 1) |
7fa3d080 | 6623 | t1_volatile = TRUE; |
a1ace8d8 BW |
6624 | |
6625 | if (t1_volatile && t2_volatile && (t1_class == t2_class)) | |
6626 | return 'f'; | |
c138bc38 | 6627 | |
7fa3d080 BW |
6628 | if (t1_int != t2_int) |
6629 | continue; | |
c138bc38 | 6630 | |
7fa3d080 BW |
6631 | if (t2_inout == 'i' && t1_inout == 'o') |
6632 | { | |
6633 | conflict = 'a'; | |
6634 | continue; | |
6635 | } | |
c138bc38 | 6636 | |
7fa3d080 BW |
6637 | if (t1_inout == 'i' && t2_inout == 'o') |
6638 | { | |
6639 | conflict = 'a'; | |
6640 | continue; | |
6641 | } | |
c138bc38 | 6642 | |
7fa3d080 BW |
6643 | if (t1_inout != 'i' && t2_inout != 'i') |
6644 | return 'e'; | |
6645 | } | |
43cd72b9 | 6646 | } |
c138bc38 | 6647 | |
7fa3d080 | 6648 | return conflict; |
43cd72b9 BW |
6649 | } |
6650 | ||
6651 | ||
6652 | static xtensa_format | |
7fa3d080 | 6653 | xg_find_narrowest_format (vliw_insn *vinsn) |
43cd72b9 BW |
6654 | { |
6655 | /* Right now we assume that the ops within the vinsn are properly | |
6656 | ordered for the slots that the programmer wanted them in. In | |
6657 | other words, we don't rearrange the ops in hopes of finding a | |
6658 | better format. The scheduler handles that. */ | |
6659 | ||
6660 | xtensa_isa isa = xtensa_default_isa; | |
6661 | xtensa_format format; | |
43cd72b9 BW |
6662 | xtensa_opcode nop_opcode = xtensa_nop_opcode; |
6663 | ||
65738a7d BW |
6664 | if (vinsn->num_slots == 1) |
6665 | return xg_get_single_format (vinsn->slots[0].opcode); | |
6666 | ||
43cd72b9 BW |
6667 | for (format = 0; format < xtensa_isa_num_formats (isa); format++) |
6668 | { | |
d8392fd9 SA |
6669 | vliw_insn v_copy; |
6670 | xg_copy_vinsn (&v_copy, vinsn); | |
43cd72b9 BW |
6671 | if (xtensa_format_num_slots (isa, format) == v_copy.num_slots) |
6672 | { | |
6673 | int slot; | |
6674 | int fit = 0; | |
6675 | for (slot = 0; slot < v_copy.num_slots; slot++) | |
6676 | { | |
6677 | if (v_copy.slots[slot].opcode == nop_opcode) | |
6678 | { | |
6679 | v_copy.slots[slot].opcode = | |
6680 | xtensa_format_slot_nop_opcode (isa, format, slot); | |
6681 | v_copy.slots[slot].ntok = 0; | |
6682 | } | |
6683 | ||
6684 | if (opcode_fits_format_slot (v_copy.slots[slot].opcode, | |
6685 | format, slot)) | |
6686 | fit++; | |
7fa3d080 | 6687 | else if (v_copy.num_slots > 1) |
43cd72b9 | 6688 | { |
7fa3d080 BW |
6689 | TInsn widened; |
6690 | /* Try the widened version. */ | |
6691 | if (!v_copy.slots[slot].keep_wide | |
6692 | && !v_copy.slots[slot].is_specific_opcode | |
84b08ed9 BW |
6693 | && xg_is_single_relaxable_insn (&v_copy.slots[slot], |
6694 | &widened, TRUE) | |
7fa3d080 BW |
6695 | && opcode_fits_format_slot (widened.opcode, |
6696 | format, slot)) | |
43cd72b9 | 6697 | { |
7fa3d080 BW |
6698 | v_copy.slots[slot] = widened; |
6699 | fit++; | |
43cd72b9 BW |
6700 | } |
6701 | } | |
6702 | } | |
6703 | if (fit == v_copy.num_slots) | |
6704 | { | |
d8392fd9 | 6705 | xg_copy_vinsn (vinsn, &v_copy); |
43cd72b9 BW |
6706 | xtensa_format_encode (isa, format, vinsn->insnbuf); |
6707 | vinsn->format = format; | |
6708 | break; | |
6709 | } | |
6710 | } | |
6711 | } | |
6712 | ||
6713 | if (format == xtensa_isa_num_formats (isa)) | |
6714 | return XTENSA_UNDEFINED; | |
6715 | ||
6716 | return format; | |
6717 | } | |
6718 | ||
6719 | ||
6720 | /* Return the additional space needed in a frag | |
6721 | for possible relaxations of any ops in a VLIW insn. | |
6722 | Also fill out the relaxations that might be required of | |
6723 | each tinsn in the vinsn. */ | |
6724 | ||
6725 | static int | |
e7da6241 | 6726 | relaxation_requirements (vliw_insn *vinsn, bfd_boolean *pfinish_frag) |
43cd72b9 | 6727 | { |
e7da6241 | 6728 | bfd_boolean finish_frag = FALSE; |
43cd72b9 BW |
6729 | int extra_space = 0; |
6730 | int slot; | |
6731 | ||
6732 | for (slot = 0; slot < vinsn->num_slots; slot++) | |
6733 | { | |
6734 | TInsn *tinsn = &vinsn->slots[slot]; | |
6735 | if (!tinsn_has_symbolic_operands (tinsn)) | |
6736 | { | |
6737 | /* A narrow instruction could be widened later to help | |
6738 | alignment issues. */ | |
84b08ed9 | 6739 | if (xg_is_single_relaxable_insn (tinsn, 0, TRUE) |
43cd72b9 BW |
6740 | && !tinsn->is_specific_opcode |
6741 | && vinsn->num_slots == 1) | |
6742 | { | |
6743 | /* Difference in bytes between narrow and wide insns... */ | |
6744 | extra_space += 1; | |
6745 | tinsn->subtype = RELAX_NARROW; | |
43cd72b9 BW |
6746 | } |
6747 | } | |
6748 | else | |
6749 | { | |
b08b5071 BW |
6750 | if (workaround_b_j_loop_end |
6751 | && tinsn->opcode == xtensa_jx_opcode | |
43cd72b9 BW |
6752 | && use_transform ()) |
6753 | { | |
6754 | /* Add 2 of these. */ | |
6755 | extra_space += 3; /* for the nop size */ | |
6756 | tinsn->subtype = RELAX_ADD_NOP_IF_PRE_LOOP_END; | |
6757 | } | |
c138bc38 | 6758 | |
43cd72b9 BW |
6759 | /* Need to assemble it with space for the relocation. */ |
6760 | if (xg_is_relaxable_insn (tinsn, 0) | |
6761 | && !tinsn->is_specific_opcode) | |
6762 | { | |
6763 | int max_size = xg_get_max_insn_widen_size (tinsn->opcode); | |
6764 | int max_literal_size = | |
6765 | xg_get_max_insn_widen_literal_size (tinsn->opcode); | |
c138bc38 | 6766 | |
43cd72b9 | 6767 | tinsn->literal_space = max_literal_size; |
c138bc38 | 6768 | |
43cd72b9 | 6769 | tinsn->subtype = RELAX_IMMED; |
43cd72b9 BW |
6770 | extra_space += max_size; |
6771 | } | |
6772 | else | |
6773 | { | |
e7da6241 BW |
6774 | /* A fix record will be added for this instruction prior |
6775 | to relaxation, so make it end the frag. */ | |
6776 | finish_frag = TRUE; | |
43cd72b9 BW |
6777 | } |
6778 | } | |
6779 | } | |
e7da6241 | 6780 | *pfinish_frag = finish_frag; |
43cd72b9 BW |
6781 | return extra_space; |
6782 | } | |
6783 | ||
6784 | ||
6785 | static void | |
b2d179be | 6786 | bundle_tinsn (TInsn *tinsn, vliw_insn *vinsn) |
43cd72b9 BW |
6787 | { |
6788 | xtensa_isa isa = xtensa_default_isa; | |
b2d179be | 6789 | int slot, chosen_slot; |
43cd72b9 | 6790 | |
b2d179be | 6791 | vinsn->format = xg_get_single_format (tinsn->opcode); |
9c2799c2 | 6792 | gas_assert (vinsn->format != XTENSA_UNDEFINED); |
b2d179be | 6793 | vinsn->num_slots = xtensa_format_num_slots (isa, vinsn->format); |
43cd72b9 | 6794 | |
b2d179be BW |
6795 | chosen_slot = xg_get_single_slot (tinsn->opcode); |
6796 | for (slot = 0; slot < vinsn->num_slots; slot++) | |
43cd72b9 | 6797 | { |
b2d179be BW |
6798 | if (slot == chosen_slot) |
6799 | vinsn->slots[slot] = *tinsn; | |
6800 | else | |
6801 | { | |
6802 | vinsn->slots[slot].opcode = | |
6803 | xtensa_format_slot_nop_opcode (isa, vinsn->format, slot); | |
6804 | vinsn->slots[slot].ntok = 0; | |
6805 | vinsn->slots[slot].insn_type = ITYPE_INSN; | |
6806 | } | |
43cd72b9 | 6807 | } |
43cd72b9 BW |
6808 | } |
6809 | ||
6810 | ||
6811 | static bfd_boolean | |
7fa3d080 | 6812 | emit_single_op (TInsn *orig_insn) |
43cd72b9 BW |
6813 | { |
6814 | int i; | |
6815 | IStack istack; /* put instructions into here */ | |
6816 | symbolS *lit_sym = NULL; | |
6817 | symbolS *label_sym = NULL; | |
6818 | ||
6819 | istack_init (&istack); | |
6820 | ||
6821 | /* Special-case for "movi aX, foo" which is guaranteed to need relaxing. | |
c138bc38 BW |
6822 | Because the scheduling and bundling characteristics of movi and |
6823 | l32r or const16 are so different, we can do much better if we relax | |
43cd72b9 | 6824 | it prior to scheduling and bundling, rather than after. */ |
c138bc38 | 6825 | if ((orig_insn->opcode == xtensa_movi_opcode |
b08b5071 BW |
6826 | || orig_insn->opcode == xtensa_movi_n_opcode) |
6827 | && !cur_vinsn.inside_bundle | |
43cd72b9 | 6828 | && (orig_insn->tok[1].X_op == O_symbol |
28dbbc02 BW |
6829 | || orig_insn->tok[1].X_op == O_pltrel |
6830 | || orig_insn->tok[1].X_op == O_tlsfunc | |
6831 | || orig_insn->tok[1].X_op == O_tlsarg | |
6832 | || orig_insn->tok[1].X_op == O_tpoff | |
6833 | || orig_insn->tok[1].X_op == O_dtpoff) | |
482fd9f9 | 6834 | && !orig_insn->is_specific_opcode && use_transform ()) |
43cd72b9 BW |
6835 | xg_assembly_relax (&istack, orig_insn, now_seg, frag_now, 0, 1, 0); |
6836 | else | |
6837 | if (xg_expand_assembly_insn (&istack, orig_insn)) | |
6838 | return TRUE; | |
6839 | ||
6840 | for (i = 0; i < istack.ninsn; i++) | |
6841 | { | |
6842 | TInsn *insn = &istack.insn[i]; | |
c138bc38 | 6843 | switch (insn->insn_type) |
43cd72b9 BW |
6844 | { |
6845 | case ITYPE_LITERAL: | |
9c2799c2 | 6846 | gas_assert (lit_sym == NULL); |
43cd72b9 BW |
6847 | lit_sym = xg_assemble_literal (insn); |
6848 | break; | |
6849 | case ITYPE_LABEL: | |
6850 | { | |
6851 | static int relaxed_sym_idx = 0; | |
6852 | char *label = xmalloc (strlen (FAKE_LABEL_NAME) + 12); | |
6853 | sprintf (label, "%s_rl_%x", FAKE_LABEL_NAME, relaxed_sym_idx++); | |
6854 | colon (label); | |
9c2799c2 | 6855 | gas_assert (label_sym == NULL); |
43cd72b9 | 6856 | label_sym = symbol_find_or_make (label); |
9c2799c2 | 6857 | gas_assert (label_sym); |
43cd72b9 BW |
6858 | free (label); |
6859 | } | |
6860 | break; | |
6861 | case ITYPE_INSN: | |
b2d179be BW |
6862 | { |
6863 | vliw_insn v; | |
6864 | if (lit_sym) | |
6865 | xg_resolve_literals (insn, lit_sym); | |
6866 | if (label_sym) | |
6867 | xg_resolve_labels (insn, label_sym); | |
6868 | xg_init_vinsn (&v); | |
6869 | bundle_tinsn (insn, &v); | |
6870 | finish_vinsn (&v); | |
6871 | xg_free_vinsn (&v); | |
6872 | } | |
43cd72b9 BW |
6873 | break; |
6874 | default: | |
9c2799c2 | 6875 | gas_assert (0); |
43cd72b9 BW |
6876 | break; |
6877 | } | |
6878 | } | |
6879 | return FALSE; | |
6880 | } | |
6881 | ||
6882 | ||
34e41783 BW |
6883 | static int |
6884 | total_frag_text_expansion (fragS *fragP) | |
6885 | { | |
6886 | int slot; | |
6887 | int total_expansion = 0; | |
6888 | ||
62af60e2 | 6889 | for (slot = 0; slot < config_max_slots; slot++) |
34e41783 BW |
6890 | total_expansion += fragP->tc_frag_data.text_expansion[slot]; |
6891 | ||
6892 | return total_expansion; | |
6893 | } | |
6894 | ||
6895 | ||
43cd72b9 BW |
6896 | /* Emit a vliw instruction to the current fragment. */ |
6897 | ||
7fa3d080 BW |
6898 | static void |
6899 | xg_assemble_vliw_tokens (vliw_insn *vinsn) | |
43cd72b9 | 6900 | { |
e7da6241 | 6901 | bfd_boolean finish_frag; |
43cd72b9 BW |
6902 | bfd_boolean is_jump = FALSE; |
6903 | bfd_boolean is_branch = FALSE; | |
6904 | xtensa_isa isa = xtensa_default_isa; | |
43cd72b9 BW |
6905 | int insn_size; |
6906 | int extra_space; | |
6907 | char *f = NULL; | |
6908 | int slot; | |
b224e962 BW |
6909 | struct dwarf2_line_info debug_line; |
6910 | bfd_boolean loc_directive_seen = FALSE; | |
6911 | TInsn *tinsn; | |
43cd72b9 | 6912 | |
b224e962 | 6913 | memset (&debug_line, 0, sizeof (struct dwarf2_line_info)); |
43cd72b9 BW |
6914 | |
6915 | if (generating_literals) | |
6916 | { | |
6917 | static int reported = 0; | |
6918 | if (reported < 4) | |
6919 | as_bad_where (frag_now->fr_file, frag_now->fr_line, | |
6920 | _("cannot assemble into a literal fragment")); | |
6921 | if (reported == 3) | |
6922 | as_bad (_("...")); | |
6923 | reported++; | |
6924 | return; | |
6925 | } | |
6926 | ||
6927 | if (frag_now_fix () != 0 | |
b08b5071 | 6928 | && (! frag_now->tc_frag_data.is_insn |
43cd72b9 | 6929 | || (vinsn_has_specific_opcodes (vinsn) && use_transform ()) |
b08b5071 | 6930 | || !use_transform () != frag_now->tc_frag_data.is_no_transform |
7c834684 BW |
6931 | || (directive_state[directive_longcalls] |
6932 | != frag_now->tc_frag_data.use_longcalls) | |
43cd72b9 BW |
6933 | || (directive_state[directive_absolute_literals] |
6934 | != frag_now->tc_frag_data.use_absolute_literals))) | |
6935 | { | |
6936 | frag_wane (frag_now); | |
6937 | frag_new (0); | |
6938 | xtensa_set_frag_assembly_state (frag_now); | |
6939 | } | |
6940 | ||
6941 | if (workaround_a0_b_retw | |
6942 | && vinsn->num_slots == 1 | |
6943 | && (get_last_insn_flags (now_seg, now_subseg) & FLAG_IS_A0_WRITER) != 0 | |
6944 | && xtensa_opcode_is_branch (isa, vinsn->slots[0].opcode) == 1 | |
6945 | && use_transform ()) | |
6946 | { | |
6947 | has_a0_b_retw = TRUE; | |
6948 | ||
6949 | /* Mark this fragment with the special RELAX_ADD_NOP_IF_A0_B_RETW. | |
6950 | After the first assembly pass we will check all of them and | |
6951 | add a nop if needed. */ | |
6952 | frag_now->tc_frag_data.is_insn = TRUE; | |
6953 | frag_var (rs_machine_dependent, 4, 4, | |
6954 | RELAX_ADD_NOP_IF_A0_B_RETW, | |
6955 | frag_now->fr_symbol, | |
6956 | frag_now->fr_offset, | |
6957 | NULL); | |
6958 | xtensa_set_frag_assembly_state (frag_now); | |
6959 | frag_now->tc_frag_data.is_insn = TRUE; | |
6960 | frag_var (rs_machine_dependent, 4, 4, | |
6961 | RELAX_ADD_NOP_IF_A0_B_RETW, | |
6962 | frag_now->fr_symbol, | |
6963 | frag_now->fr_offset, | |
6964 | NULL); | |
6965 | xtensa_set_frag_assembly_state (frag_now); | |
6966 | } | |
6967 | ||
b224e962 | 6968 | for (slot = 0; slot < vinsn->num_slots; slot++) |
43cd72b9 | 6969 | { |
b224e962 BW |
6970 | tinsn = &vinsn->slots[slot]; |
6971 | ||
43cd72b9 | 6972 | /* See if the instruction implies an aligned section. */ |
b224e962 | 6973 | if (xtensa_opcode_is_loop (isa, tinsn->opcode) == 1) |
43cd72b9 | 6974 | record_alignment (now_seg, 2); |
c138bc38 | 6975 | |
b224e962 BW |
6976 | /* Determine the best line number for debug info. */ |
6977 | if ((tinsn->loc_directive_seen || !loc_directive_seen) | |
6978 | && (tinsn->debug_line.filenum != debug_line.filenum | |
6979 | || tinsn->debug_line.line < debug_line.line | |
6980 | || tinsn->debug_line.column < debug_line.column)) | |
6981 | debug_line = tinsn->debug_line; | |
6982 | if (tinsn->loc_directive_seen) | |
6983 | loc_directive_seen = TRUE; | |
43cd72b9 BW |
6984 | } |
6985 | ||
6986 | /* Special cases for instructions that force an alignment... */ | |
6987 | /* None of these opcodes are bundle-able. */ | |
6988 | if (xtensa_opcode_is_loop (isa, vinsn->slots[0].opcode) == 1) | |
6989 | { | |
d77b99c9 | 6990 | int max_fill; |
c138bc38 | 6991 | |
05d58145 BW |
6992 | /* Remember the symbol that marks the end of the loop in the frag |
6993 | that marks the start of the loop. This way we can easily find | |
6994 | the end of the loop at the beginning, without adding special code | |
6995 | to mark the loop instructions themselves. */ | |
6996 | symbolS *target_sym = NULL; | |
6997 | if (vinsn->slots[0].tok[1].X_op == O_symbol) | |
6998 | target_sym = vinsn->slots[0].tok[1].X_add_symbol; | |
6999 | ||
43cd72b9 BW |
7000 | xtensa_set_frag_assembly_state (frag_now); |
7001 | frag_now->tc_frag_data.is_insn = TRUE; | |
c138bc38 | 7002 | |
43cd72b9 BW |
7003 | max_fill = get_text_align_max_fill_size |
7004 | (get_text_align_power (xtensa_fetch_width), | |
7005 | TRUE, frag_now->tc_frag_data.is_no_density); | |
7006 | ||
7007 | if (use_transform ()) | |
7008 | frag_var (rs_machine_dependent, max_fill, max_fill, | |
05d58145 | 7009 | RELAX_ALIGN_NEXT_OPCODE, target_sym, 0, NULL); |
43cd72b9 | 7010 | else |
c138bc38 | 7011 | frag_var (rs_machine_dependent, 0, 0, |
05d58145 | 7012 | RELAX_CHECK_ALIGN_NEXT_OPCODE, target_sym, 0, NULL); |
43cd72b9 | 7013 | xtensa_set_frag_assembly_state (frag_now); |
43cd72b9 BW |
7014 | } |
7015 | ||
b08b5071 | 7016 | if (vinsn->slots[0].opcode == xtensa_entry_opcode |
43cd72b9 BW |
7017 | && !vinsn->slots[0].is_specific_opcode) |
7018 | { | |
7019 | xtensa_mark_literal_pool_location (); | |
c3ea6048 | 7020 | xtensa_move_labels (frag_now, 0); |
43cd72b9 BW |
7021 | frag_var (rs_align_test, 1, 1, 0, NULL, 2, NULL); |
7022 | } | |
7023 | ||
7024 | if (vinsn->num_slots == 1) | |
7025 | { | |
7026 | if (workaround_a0_b_retw && use_transform ()) | |
7027 | set_last_insn_flags (now_seg, now_subseg, FLAG_IS_A0_WRITER, | |
7028 | is_register_writer (&vinsn->slots[0], "a", 0)); | |
7029 | ||
7030 | set_last_insn_flags (now_seg, now_subseg, FLAG_IS_BAD_LOOPEND, | |
7031 | is_bad_loopend_opcode (&vinsn->slots[0])); | |
7032 | } | |
7033 | else | |
7034 | set_last_insn_flags (now_seg, now_subseg, FLAG_IS_BAD_LOOPEND, FALSE); | |
7035 | ||
7036 | insn_size = xtensa_format_length (isa, vinsn->format); | |
7037 | ||
e7da6241 | 7038 | extra_space = relaxation_requirements (vinsn, &finish_frag); |
43cd72b9 BW |
7039 | |
7040 | /* vinsn_to_insnbuf will produce the error. */ | |
7041 | if (vinsn->format != XTENSA_UNDEFINED) | |
7042 | { | |
d77b99c9 | 7043 | f = frag_more (insn_size + extra_space); |
43cd72b9 BW |
7044 | xtensa_set_frag_assembly_state (frag_now); |
7045 | frag_now->tc_frag_data.is_insn = TRUE; | |
7046 | } | |
7047 | ||
e7da6241 | 7048 | vinsn_to_insnbuf (vinsn, f, frag_now, FALSE); |
43cd72b9 BW |
7049 | if (vinsn->format == XTENSA_UNDEFINED) |
7050 | return; | |
7051 | ||
d77b99c9 | 7052 | xtensa_insnbuf_to_chars (isa, vinsn->insnbuf, (unsigned char *) f, 0); |
c138bc38 | 7053 | |
b224e962 BW |
7054 | if (debug_type == DEBUG_DWARF2 || loc_directive_seen) |
7055 | dwarf2_gen_line_info (frag_now_fix () - (insn_size + extra_space), | |
7056 | &debug_line); | |
43cd72b9 BW |
7057 | |
7058 | for (slot = 0; slot < vinsn->num_slots; slot++) | |
7059 | { | |
b224e962 | 7060 | tinsn = &vinsn->slots[slot]; |
43cd72b9 | 7061 | frag_now->tc_frag_data.slot_subtypes[slot] = tinsn->subtype; |
7c834684 | 7062 | frag_now->tc_frag_data.slot_symbols[slot] = tinsn->symbol; |
7c834684 | 7063 | frag_now->tc_frag_data.slot_offsets[slot] = tinsn->offset; |
43cd72b9 BW |
7064 | frag_now->tc_frag_data.literal_frags[slot] = tinsn->literal_frag; |
7065 | if (tinsn->literal_space != 0) | |
7066 | xg_assemble_literal_space (tinsn->literal_space, slot); | |
19e8f41a | 7067 | frag_now->tc_frag_data.free_reg[slot] = tinsn->extra_arg; |
43cd72b9 BW |
7068 | |
7069 | if (tinsn->subtype == RELAX_NARROW) | |
9c2799c2 | 7070 | gas_assert (vinsn->num_slots == 1); |
43cd72b9 BW |
7071 | if (xtensa_opcode_is_jump (isa, tinsn->opcode) == 1) |
7072 | is_jump = TRUE; | |
7073 | if (xtensa_opcode_is_branch (isa, tinsn->opcode) == 1) | |
7074 | is_branch = TRUE; | |
7075 | ||
e7da6241 BW |
7076 | if (tinsn->subtype || tinsn->symbol || tinsn->offset |
7077 | || tinsn->literal_frag || is_jump || is_branch) | |
43cd72b9 BW |
7078 | finish_frag = TRUE; |
7079 | } | |
7080 | ||
7081 | if (vinsn_has_specific_opcodes (vinsn) && use_transform ()) | |
b08b5071 | 7082 | frag_now->tc_frag_data.is_specific_opcode = TRUE; |
43cd72b9 BW |
7083 | |
7084 | if (finish_frag) | |
7085 | { | |
7086 | frag_variant (rs_machine_dependent, | |
7087 | extra_space, extra_space, RELAX_SLOTS, | |
7088 | frag_now->fr_symbol, frag_now->fr_offset, f); | |
7089 | xtensa_set_frag_assembly_state (frag_now); | |
7090 | } | |
7091 | ||
7092 | /* Special cases for loops: | |
7093 | close_loop_end should be inserted AFTER short_loop. | |
7094 | Make sure that CLOSE loops are processed BEFORE short_loops | |
7095 | when converting them. */ | |
7096 | ||
7097 | /* "short_loop": Add a NOP if the loop is < 4 bytes. */ | |
64b607e6 | 7098 | if (xtensa_opcode_is_loop (isa, vinsn->slots[0].opcode) == 1 |
43cd72b9 BW |
7099 | && !vinsn->slots[0].is_specific_opcode) |
7100 | { | |
7101 | if (workaround_short_loop && use_transform ()) | |
7102 | { | |
7103 | maybe_has_short_loop = TRUE; | |
7104 | frag_now->tc_frag_data.is_insn = TRUE; | |
7105 | frag_var (rs_machine_dependent, 4, 4, | |
7106 | RELAX_ADD_NOP_IF_SHORT_LOOP, | |
7107 | frag_now->fr_symbol, frag_now->fr_offset, NULL); | |
7108 | frag_now->tc_frag_data.is_insn = TRUE; | |
7109 | frag_var (rs_machine_dependent, 4, 4, | |
7110 | RELAX_ADD_NOP_IF_SHORT_LOOP, | |
7111 | frag_now->fr_symbol, frag_now->fr_offset, NULL); | |
7112 | } | |
7113 | ||
7114 | /* "close_loop_end": Add up to 12 bytes of NOPs to keep a | |
7115 | loop at least 12 bytes away from another loop's end. */ | |
7116 | if (workaround_close_loop_end && use_transform ()) | |
7117 | { | |
7118 | maybe_has_close_loop_end = TRUE; | |
7119 | frag_now->tc_frag_data.is_insn = TRUE; | |
7120 | frag_var (rs_machine_dependent, 12, 12, | |
7121 | RELAX_ADD_NOP_IF_CLOSE_LOOP_END, | |
7122 | frag_now->fr_symbol, frag_now->fr_offset, NULL); | |
7123 | } | |
7124 | } | |
7125 | ||
7126 | if (use_transform ()) | |
7127 | { | |
7128 | if (is_jump) | |
7129 | { | |
9c2799c2 | 7130 | gas_assert (finish_frag); |
43cd72b9 | 7131 | frag_var (rs_machine_dependent, |
1beeb686 | 7132 | xtensa_fetch_width, xtensa_fetch_width, |
43cd72b9 BW |
7133 | RELAX_UNREACHABLE, |
7134 | frag_now->fr_symbol, frag_now->fr_offset, NULL); | |
7135 | xtensa_set_frag_assembly_state (frag_now); | |
7136 | } | |
7b1cc377 | 7137 | else if (is_branch && do_align_targets ()) |
43cd72b9 | 7138 | { |
9c2799c2 | 7139 | gas_assert (finish_frag); |
43cd72b9 | 7140 | frag_var (rs_machine_dependent, |
1beeb686 | 7141 | xtensa_fetch_width, xtensa_fetch_width, |
43cd72b9 BW |
7142 | RELAX_MAYBE_UNREACHABLE, |
7143 | frag_now->fr_symbol, frag_now->fr_offset, NULL); | |
7144 | xtensa_set_frag_assembly_state (frag_now); | |
7145 | frag_var (rs_machine_dependent, | |
7146 | 0, 0, | |
7147 | RELAX_MAYBE_DESIRE_ALIGN, | |
7148 | frag_now->fr_symbol, frag_now->fr_offset, NULL); | |
7149 | xtensa_set_frag_assembly_state (frag_now); | |
7150 | } | |
7151 | } | |
7152 | ||
7153 | /* Now, if the original opcode was a call... */ | |
7154 | if (do_align_targets () | |
7155 | && xtensa_opcode_is_call (isa, vinsn->slots[0].opcode) == 1) | |
7156 | { | |
b08b5071 | 7157 | float freq = get_subseg_total_freq (now_seg, now_subseg); |
43cd72b9 BW |
7158 | frag_now->tc_frag_data.is_insn = TRUE; |
7159 | frag_var (rs_machine_dependent, 4, (int) freq, RELAX_DESIRE_ALIGN, | |
7160 | frag_now->fr_symbol, frag_now->fr_offset, NULL); | |
7161 | xtensa_set_frag_assembly_state (frag_now); | |
7162 | } | |
7163 | ||
7164 | if (vinsn_has_specific_opcodes (vinsn) && use_transform ()) | |
7165 | { | |
7166 | frag_wane (frag_now); | |
7167 | frag_new (0); | |
7168 | xtensa_set_frag_assembly_state (frag_now); | |
7169 | } | |
7170 | } | |
7171 | ||
7172 | \f | |
7fa3d080 BW |
7173 | /* xtensa_end and helper functions. */ |
7174 | ||
7175 | static void xtensa_cleanup_align_frags (void); | |
7176 | static void xtensa_fix_target_frags (void); | |
7177 | static void xtensa_mark_narrow_branches (void); | |
7178 | static void xtensa_mark_zcl_first_insns (void); | |
6a7eedfe | 7179 | static void xtensa_mark_difference_of_two_symbols (void); |
7fa3d080 BW |
7180 | static void xtensa_fix_a0_b_retw_frags (void); |
7181 | static void xtensa_fix_b_j_loop_end_frags (void); | |
7182 | static void xtensa_fix_close_loop_end_frags (void); | |
7183 | static void xtensa_fix_short_loop_frags (void); | |
7184 | static void xtensa_sanity_check (void); | |
2caa7ca0 | 7185 | static void xtensa_add_config_info (void); |
7fa3d080 | 7186 | |
43cd72b9 | 7187 | void |
7fa3d080 | 7188 | xtensa_end (void) |
43cd72b9 BW |
7189 | { |
7190 | directive_balance (); | |
7191 | xtensa_flush_pending_output (); | |
7192 | ||
7193 | past_xtensa_end = TRUE; | |
7194 | ||
7195 | xtensa_move_literals (); | |
7196 | ||
7197 | xtensa_reorder_segments (); | |
7198 | xtensa_cleanup_align_frags (); | |
7199 | xtensa_fix_target_frags (); | |
7200 | if (workaround_a0_b_retw && has_a0_b_retw) | |
7201 | xtensa_fix_a0_b_retw_frags (); | |
7202 | if (workaround_b_j_loop_end) | |
7203 | xtensa_fix_b_j_loop_end_frags (); | |
7204 | ||
7205 | /* "close_loop_end" should be processed BEFORE "short_loop". */ | |
7206 | if (workaround_close_loop_end && maybe_has_close_loop_end) | |
7207 | xtensa_fix_close_loop_end_frags (); | |
7208 | ||
7209 | if (workaround_short_loop && maybe_has_short_loop) | |
7210 | xtensa_fix_short_loop_frags (); | |
03aaa593 BW |
7211 | if (align_targets) |
7212 | xtensa_mark_narrow_branches (); | |
43cd72b9 BW |
7213 | xtensa_mark_zcl_first_insns (); |
7214 | ||
7215 | xtensa_sanity_check (); | |
2caa7ca0 BW |
7216 | |
7217 | xtensa_add_config_info (); | |
43cd72b9 BW |
7218 | } |
7219 | ||
7220 | ||
7221 | static void | |
7fa3d080 | 7222 | xtensa_cleanup_align_frags (void) |
43cd72b9 BW |
7223 | { |
7224 | frchainS *frchP; | |
c9049d30 | 7225 | asection *s; |
43cd72b9 | 7226 | |
c9049d30 AM |
7227 | for (s = stdoutput->sections; s; s = s->next) |
7228 | for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next) | |
7229 | { | |
7230 | fragS *fragP; | |
7231 | /* Walk over all of the fragments in a subsection. */ | |
7232 | for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next) | |
7233 | { | |
7234 | if ((fragP->fr_type == rs_align | |
7235 | || fragP->fr_type == rs_align_code | |
7236 | || (fragP->fr_type == rs_machine_dependent | |
7237 | && (fragP->fr_subtype == RELAX_DESIRE_ALIGN | |
7238 | || fragP->fr_subtype == RELAX_DESIRE_ALIGN_IF_TARGET))) | |
7239 | && fragP->fr_fix == 0) | |
7240 | { | |
7241 | fragS *next = fragP->fr_next; | |
7242 | ||
7243 | while (next | |
7244 | && next->fr_fix == 0 | |
7245 | && next->fr_type == rs_machine_dependent | |
7246 | && next->fr_subtype == RELAX_DESIRE_ALIGN_IF_TARGET) | |
7247 | { | |
7248 | frag_wane (next); | |
7249 | next = next->fr_next; | |
7250 | } | |
7251 | } | |
7252 | /* If we don't widen branch targets, then they | |
7253 | will be easier to align. */ | |
7254 | if (fragP->tc_frag_data.is_branch_target | |
7255 | && fragP->fr_opcode == fragP->fr_literal | |
7256 | && fragP->fr_type == rs_machine_dependent | |
7257 | && fragP->fr_subtype == RELAX_SLOTS | |
7258 | && fragP->tc_frag_data.slot_subtypes[0] == RELAX_NARROW) | |
7259 | frag_wane (fragP); | |
7260 | if (fragP->fr_type == rs_machine_dependent | |
7261 | && fragP->fr_subtype == RELAX_UNREACHABLE) | |
7262 | fragP->tc_frag_data.is_unreachable = TRUE; | |
7263 | } | |
7264 | } | |
43cd72b9 BW |
7265 | } |
7266 | ||
7267 | ||
7268 | /* Re-process all of the fragments looking to convert all of the | |
7269 | RELAX_DESIRE_ALIGN_IF_TARGET fragments. If there is a branch | |
7270 | target in the next fragment, convert this to RELAX_DESIRE_ALIGN. | |
7b1cc377 | 7271 | Otherwise, convert to a .fill 0. */ |
7fa3d080 | 7272 | |
43cd72b9 | 7273 | static void |
7fa3d080 | 7274 | xtensa_fix_target_frags (void) |
e0001a05 NC |
7275 | { |
7276 | frchainS *frchP; | |
c9049d30 | 7277 | asection *s; |
e0001a05 NC |
7278 | |
7279 | /* When this routine is called, all of the subsections are still intact | |
7280 | so we walk over subsections instead of sections. */ | |
c9049d30 AM |
7281 | for (s = stdoutput->sections; s; s = s->next) |
7282 | for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next) | |
7283 | { | |
7284 | fragS *fragP; | |
e0001a05 | 7285 | |
c9049d30 AM |
7286 | /* Walk over all of the fragments in a subsection. */ |
7287 | for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next) | |
7288 | { | |
7289 | if (fragP->fr_type == rs_machine_dependent | |
7290 | && fragP->fr_subtype == RELAX_DESIRE_ALIGN_IF_TARGET) | |
7291 | { | |
7292 | if (next_frag_is_branch_target (fragP)) | |
7293 | fragP->fr_subtype = RELAX_DESIRE_ALIGN; | |
7294 | else | |
7295 | frag_wane (fragP); | |
7296 | } | |
7297 | } | |
7298 | } | |
e0001a05 NC |
7299 | } |
7300 | ||
7301 | ||
7fa3d080 BW |
7302 | static bfd_boolean is_narrow_branch_guaranteed_in_range (fragS *, TInsn *); |
7303 | ||
43cd72b9 | 7304 | static void |
7fa3d080 | 7305 | xtensa_mark_narrow_branches (void) |
43cd72b9 BW |
7306 | { |
7307 | frchainS *frchP; | |
c9049d30 | 7308 | asection *s; |
43cd72b9 | 7309 | |
c9049d30 AM |
7310 | for (s = stdoutput->sections; s; s = s->next) |
7311 | for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next) | |
7312 | { | |
7313 | fragS *fragP; | |
7314 | /* Walk over all of the fragments in a subsection. */ | |
7315 | for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next) | |
7316 | { | |
7317 | if (fragP->fr_type == rs_machine_dependent | |
7318 | && fragP->fr_subtype == RELAX_SLOTS | |
7319 | && fragP->tc_frag_data.slot_subtypes[0] == RELAX_IMMED) | |
7320 | { | |
7321 | vliw_insn vinsn; | |
7322 | ||
7323 | vinsn_from_chars (&vinsn, fragP->fr_opcode); | |
7324 | tinsn_immed_from_frag (&vinsn.slots[0], fragP, 0); | |
7325 | ||
7326 | if (vinsn.num_slots == 1 | |
7327 | && xtensa_opcode_is_branch (xtensa_default_isa, | |
64b607e6 | 7328 | vinsn.slots[0].opcode) == 1 |
c9049d30 AM |
7329 | && xg_get_single_size (vinsn.slots[0].opcode) == 2 |
7330 | && is_narrow_branch_guaranteed_in_range (fragP, | |
7331 | &vinsn.slots[0])) | |
7332 | { | |
7333 | fragP->fr_subtype = RELAX_SLOTS; | |
7334 | fragP->tc_frag_data.slot_subtypes[0] = RELAX_NARROW; | |
7335 | fragP->tc_frag_data.is_aligning_branch = 1; | |
7336 | } | |
7337 | } | |
7338 | } | |
7339 | } | |
43cd72b9 BW |
7340 | } |
7341 | ||
7342 | ||
7343 | /* A branch is typically widened only when its target is out of | |
7344 | range. However, we would like to widen them to align a subsequent | |
7345 | branch target when possible. | |
7346 | ||
7347 | Because the branch relaxation code is so convoluted, the optimal solution | |
7348 | (combining the two cases) is difficult to get right in all circumstances. | |
7349 | We therefore go with an "almost as good" solution, where we only | |
7350 | use for alignment narrow branches that definitely will not expand to a | |
7351 | jump and a branch. These functions find and mark these cases. */ | |
7352 | ||
a67517f4 BW |
7353 | /* The range in bytes of BNEZ.N and BEQZ.N. The target operand is encoded |
7354 | as PC + 4 + imm6, where imm6 is a 6-bit immediate ranging from 0 to 63. | |
7355 | We start counting beginning with the frag after the 2-byte branch, so the | |
7356 | maximum offset is (4 - 2) + 63 = 65. */ | |
7357 | #define MAX_IMMED6 65 | |
43cd72b9 | 7358 | |
d77b99c9 | 7359 | static offsetT unrelaxed_frag_max_size (fragS *); |
7fa3d080 | 7360 | |
43cd72b9 | 7361 | static bfd_boolean |
7fa3d080 | 7362 | is_narrow_branch_guaranteed_in_range (fragS *fragP, TInsn *tinsn) |
43cd72b9 | 7363 | { |
91d6fa6a NC |
7364 | const expressionS *exp = &tinsn->tok[1]; |
7365 | symbolS *symbolP = exp->X_add_symbol; | |
7366 | offsetT max_distance = exp->X_add_number; | |
e7da6241 BW |
7367 | fragS *target_frag; |
7368 | ||
91d6fa6a | 7369 | if (exp->X_op != O_symbol) |
e7da6241 BW |
7370 | return FALSE; |
7371 | ||
7372 | target_frag = symbol_get_frag (symbolP); | |
7373 | ||
43cd72b9 BW |
7374 | max_distance += (S_GET_VALUE (symbolP) - target_frag->fr_address); |
7375 | if (is_branch_jmp_to_next (tinsn, fragP)) | |
7376 | return FALSE; | |
7377 | ||
7378 | /* The branch doesn't branch over it's own frag, | |
7379 | but over the subsequent ones. */ | |
7380 | fragP = fragP->fr_next; | |
7381 | while (fragP != NULL && fragP != target_frag && max_distance <= MAX_IMMED6) | |
7382 | { | |
7383 | max_distance += unrelaxed_frag_max_size (fragP); | |
7384 | fragP = fragP->fr_next; | |
7385 | } | |
7386 | if (max_distance <= MAX_IMMED6 && fragP == target_frag) | |
7387 | return TRUE; | |
e0001a05 NC |
7388 | return FALSE; |
7389 | } | |
7390 | ||
7391 | ||
43cd72b9 | 7392 | static void |
7fa3d080 | 7393 | xtensa_mark_zcl_first_insns (void) |
43cd72b9 BW |
7394 | { |
7395 | frchainS *frchP; | |
c9049d30 | 7396 | asection *s; |
43cd72b9 | 7397 | |
c9049d30 AM |
7398 | for (s = stdoutput->sections; s; s = s->next) |
7399 | for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next) | |
7400 | { | |
7401 | fragS *fragP; | |
7402 | /* Walk over all of the fragments in a subsection. */ | |
7403 | for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next) | |
7404 | { | |
7405 | if (fragP->fr_type == rs_machine_dependent | |
7406 | && (fragP->fr_subtype == RELAX_ALIGN_NEXT_OPCODE | |
7407 | || fragP->fr_subtype == RELAX_CHECK_ALIGN_NEXT_OPCODE)) | |
7408 | { | |
7409 | /* Find the loop frag. */ | |
3a1e9c4a | 7410 | fragS *loop_frag = next_non_empty_frag (fragP); |
c9049d30 | 7411 | /* Find the first insn frag. */ |
3a1e9c4a SA |
7412 | fragS *targ_frag = next_non_empty_frag (loop_frag); |
7413 | ||
7414 | /* Handle a corner case that comes up in hardware | |
7415 | diagnostics. The original assembly looks like this: | |
7416 | ||
7417 | loop aX, LabelA | |
7418 | <empty_frag>--not found by next_non_empty_frag | |
7419 | loop aY, LabelB | |
7420 | ||
7421 | Depending on the start address, the assembler may or | |
7422 | may not change it to look something like this: | |
7423 | ||
7424 | loop aX, LabelA | |
7425 | nop--frag isn't empty anymore | |
7426 | loop aY, LabelB | |
7427 | ||
7428 | So set up to check the alignment of the nop if it | |
7429 | exists */ | |
7430 | while (loop_frag != targ_frag) | |
7431 | { | |
7432 | if (loop_frag->fr_type == rs_machine_dependent | |
7433 | && (loop_frag->fr_subtype == RELAX_ALIGN_NEXT_OPCODE | |
7434 | || loop_frag->fr_subtype | |
7435 | == RELAX_CHECK_ALIGN_NEXT_OPCODE)) | |
7436 | targ_frag = loop_frag; | |
7437 | else | |
7438 | loop_frag = loop_frag->fr_next; | |
7439 | } | |
c9049d30 AM |
7440 | |
7441 | /* Of course, sometimes (mostly for toy test cases) a | |
7442 | zero-cost loop instruction is the last in a section. */ | |
7443 | if (targ_frag) | |
7444 | { | |
7445 | targ_frag->tc_frag_data.is_first_loop_insn = TRUE; | |
7446 | /* Do not widen a frag that is the first instruction of a | |
7447 | zero-cost loop. It makes that loop harder to align. */ | |
7448 | if (targ_frag->fr_type == rs_machine_dependent | |
7449 | && targ_frag->fr_subtype == RELAX_SLOTS | |
7450 | && (targ_frag->tc_frag_data.slot_subtypes[0] | |
7451 | == RELAX_NARROW)) | |
7452 | { | |
7453 | if (targ_frag->tc_frag_data.is_aligning_branch) | |
7454 | targ_frag->tc_frag_data.slot_subtypes[0] = RELAX_IMMED; | |
7455 | else | |
7456 | { | |
7457 | frag_wane (targ_frag); | |
7458 | targ_frag->tc_frag_data.slot_subtypes[0] = 0; | |
7459 | } | |
7460 | } | |
7461 | } | |
7462 | if (fragP->fr_subtype == RELAX_CHECK_ALIGN_NEXT_OPCODE) | |
7463 | frag_wane (fragP); | |
7464 | } | |
7465 | } | |
7466 | } | |
43cd72b9 BW |
7467 | } |
7468 | ||
7469 | ||
fb227da0 BW |
7470 | /* When a difference-of-symbols expression is encoded as a uleb128 or |
7471 | sleb128 value, the linker is unable to adjust that value to account for | |
7472 | link-time relaxation. Mark all the code between such symbols so that | |
7473 | its size cannot be changed by linker relaxation. */ | |
7474 | ||
6a7eedfe BW |
7475 | static void |
7476 | xtensa_mark_difference_of_two_symbols (void) | |
7477 | { | |
7478 | symbolS *expr_sym; | |
7479 | ||
7480 | for (expr_sym = expr_symbols; expr_sym; | |
7481 | expr_sym = symbol_get_tc (expr_sym)->next_expr_symbol) | |
7482 | { | |
91d6fa6a | 7483 | expressionS *exp = symbol_get_value_expression (expr_sym); |
6a7eedfe | 7484 | |
91d6fa6a | 7485 | if (exp->X_op == O_subtract) |
6a7eedfe | 7486 | { |
91d6fa6a NC |
7487 | symbolS *left = exp->X_add_symbol; |
7488 | symbolS *right = exp->X_op_symbol; | |
6a7eedfe BW |
7489 | |
7490 | /* Difference of two symbols not in the same section | |
7491 | are handled with relocations in the linker. */ | |
7492 | if (S_GET_SEGMENT (left) == S_GET_SEGMENT (right)) | |
7493 | { | |
7494 | fragS *start; | |
7495 | fragS *end; | |
983f90e3 | 7496 | fragS *walk; |
6a7eedfe BW |
7497 | |
7498 | if (symbol_get_frag (left)->fr_address | |
7499 | <= symbol_get_frag (right)->fr_address) | |
7500 | { | |
7501 | start = symbol_get_frag (left); | |
7502 | end = symbol_get_frag (right); | |
7503 | } | |
7504 | else | |
7505 | { | |
7506 | start = symbol_get_frag (right); | |
7507 | end = symbol_get_frag (left); | |
7508 | } | |
983f90e3 SA |
7509 | |
7510 | if (start->tc_frag_data.no_transform_end != NULL) | |
7511 | walk = start->tc_frag_data.no_transform_end; | |
7512 | else | |
7513 | walk = start; | |
6a7eedfe BW |
7514 | do |
7515 | { | |
983f90e3 SA |
7516 | walk->tc_frag_data.is_no_transform = 1; |
7517 | walk = walk->fr_next; | |
6a7eedfe | 7518 | } |
983f90e3 SA |
7519 | while (walk && walk->fr_address < end->fr_address); |
7520 | ||
7521 | start->tc_frag_data.no_transform_end = walk; | |
6a7eedfe BW |
7522 | } |
7523 | } | |
7524 | } | |
7525 | } | |
7526 | ||
7527 | ||
e0001a05 NC |
7528 | /* Re-process all of the fragments looking to convert all of the |
7529 | RELAX_ADD_NOP_IF_A0_B_RETW. If the next instruction is a | |
7530 | conditional branch or a retw/retw.n, convert this frag to one that | |
7531 | will generate a NOP. In any case close it off with a .fill 0. */ | |
7532 | ||
7fa3d080 BW |
7533 | static bfd_boolean next_instrs_are_b_retw (fragS *); |
7534 | ||
e0001a05 | 7535 | static void |
7fa3d080 | 7536 | xtensa_fix_a0_b_retw_frags (void) |
e0001a05 NC |
7537 | { |
7538 | frchainS *frchP; | |
c9049d30 | 7539 | asection *s; |
e0001a05 NC |
7540 | |
7541 | /* When this routine is called, all of the subsections are still intact | |
7542 | so we walk over subsections instead of sections. */ | |
c9049d30 AM |
7543 | for (s = stdoutput->sections; s; s = s->next) |
7544 | for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next) | |
7545 | { | |
7546 | fragS *fragP; | |
e0001a05 | 7547 | |
c9049d30 AM |
7548 | /* Walk over all of the fragments in a subsection. */ |
7549 | for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next) | |
7550 | { | |
7551 | if (fragP->fr_type == rs_machine_dependent | |
7552 | && fragP->fr_subtype == RELAX_ADD_NOP_IF_A0_B_RETW) | |
7553 | { | |
7554 | if (next_instrs_are_b_retw (fragP)) | |
7555 | { | |
7556 | if (fragP->tc_frag_data.is_no_transform) | |
7557 | as_bad (_("instruction sequence (write a0, branch, retw) may trigger hardware errata")); | |
7558 | else | |
7559 | relax_frag_add_nop (fragP); | |
7560 | } | |
7561 | frag_wane (fragP); | |
7562 | } | |
7563 | } | |
7564 | } | |
e0001a05 NC |
7565 | } |
7566 | ||
7567 | ||
7fa3d080 BW |
7568 | static bfd_boolean |
7569 | next_instrs_are_b_retw (fragS *fragP) | |
e0001a05 NC |
7570 | { |
7571 | xtensa_opcode opcode; | |
43cd72b9 | 7572 | xtensa_format fmt; |
e0001a05 NC |
7573 | const fragS *next_fragP = next_non_empty_frag (fragP); |
7574 | static xtensa_insnbuf insnbuf = NULL; | |
43cd72b9 | 7575 | static xtensa_insnbuf slotbuf = NULL; |
e0001a05 NC |
7576 | xtensa_isa isa = xtensa_default_isa; |
7577 | int offset = 0; | |
43cd72b9 BW |
7578 | int slot; |
7579 | bfd_boolean branch_seen = FALSE; | |
e0001a05 NC |
7580 | |
7581 | if (!insnbuf) | |
43cd72b9 BW |
7582 | { |
7583 | insnbuf = xtensa_insnbuf_alloc (isa); | |
7584 | slotbuf = xtensa_insnbuf_alloc (isa); | |
7585 | } | |
e0001a05 NC |
7586 | |
7587 | if (next_fragP == NULL) | |
7588 | return FALSE; | |
7589 | ||
7590 | /* Check for the conditional branch. */ | |
d77b99c9 BW |
7591 | xtensa_insnbuf_from_chars |
7592 | (isa, insnbuf, (unsigned char *) &next_fragP->fr_literal[offset], 0); | |
43cd72b9 BW |
7593 | fmt = xtensa_format_decode (isa, insnbuf); |
7594 | if (fmt == XTENSA_UNDEFINED) | |
7595 | return FALSE; | |
7596 | ||
7597 | for (slot = 0; slot < xtensa_format_num_slots (isa, fmt); slot++) | |
7598 | { | |
7599 | xtensa_format_get_slot (isa, fmt, slot, insnbuf, slotbuf); | |
7600 | opcode = xtensa_opcode_decode (isa, fmt, slot, slotbuf); | |
7601 | ||
7602 | branch_seen = (branch_seen | |
7603 | || xtensa_opcode_is_branch (isa, opcode) == 1); | |
7604 | } | |
e0001a05 | 7605 | |
43cd72b9 | 7606 | if (!branch_seen) |
e0001a05 NC |
7607 | return FALSE; |
7608 | ||
43cd72b9 | 7609 | offset += xtensa_format_length (isa, fmt); |
e0001a05 NC |
7610 | if (offset == next_fragP->fr_fix) |
7611 | { | |
7612 | next_fragP = next_non_empty_frag (next_fragP); | |
7613 | offset = 0; | |
7614 | } | |
43cd72b9 | 7615 | |
e0001a05 NC |
7616 | if (next_fragP == NULL) |
7617 | return FALSE; | |
7618 | ||
7619 | /* Check for the retw/retw.n. */ | |
d77b99c9 BW |
7620 | xtensa_insnbuf_from_chars |
7621 | (isa, insnbuf, (unsigned char *) &next_fragP->fr_literal[offset], 0); | |
43cd72b9 BW |
7622 | fmt = xtensa_format_decode (isa, insnbuf); |
7623 | ||
7624 | /* Because RETW[.N] is not bundleable, a VLIW bundle here means that we | |
7625 | have no problems. */ | |
7626 | if (fmt == XTENSA_UNDEFINED | |
7627 | || xtensa_format_num_slots (isa, fmt) != 1) | |
7628 | return FALSE; | |
7629 | ||
7630 | xtensa_format_get_slot (isa, fmt, 0, insnbuf, slotbuf); | |
7631 | opcode = xtensa_opcode_decode (isa, fmt, 0, slotbuf); | |
e0001a05 | 7632 | |
b08b5071 | 7633 | if (opcode == xtensa_retw_opcode || opcode == xtensa_retw_n_opcode) |
e0001a05 | 7634 | return TRUE; |
43cd72b9 | 7635 | |
e0001a05 NC |
7636 | return FALSE; |
7637 | } | |
7638 | ||
7639 | ||
7640 | /* Re-process all of the fragments looking to convert all of the | |
7641 | RELAX_ADD_NOP_IF_PRE_LOOP_END. If there is one instruction and a | |
7642 | loop end label, convert this frag to one that will generate a NOP. | |
7643 | In any case close it off with a .fill 0. */ | |
7644 | ||
7fa3d080 BW |
7645 | static bfd_boolean next_instr_is_loop_end (fragS *); |
7646 | ||
e0001a05 | 7647 | static void |
7fa3d080 | 7648 | xtensa_fix_b_j_loop_end_frags (void) |
e0001a05 NC |
7649 | { |
7650 | frchainS *frchP; | |
c9049d30 | 7651 | asection *s; |
e0001a05 NC |
7652 | |
7653 | /* When this routine is called, all of the subsections are still intact | |
7654 | so we walk over subsections instead of sections. */ | |
c9049d30 AM |
7655 | for (s = stdoutput->sections; s; s = s->next) |
7656 | for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next) | |
7657 | { | |
7658 | fragS *fragP; | |
e0001a05 | 7659 | |
c9049d30 AM |
7660 | /* Walk over all of the fragments in a subsection. */ |
7661 | for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next) | |
7662 | { | |
7663 | if (fragP->fr_type == rs_machine_dependent | |
7664 | && fragP->fr_subtype == RELAX_ADD_NOP_IF_PRE_LOOP_END) | |
7665 | { | |
7666 | if (next_instr_is_loop_end (fragP)) | |
7667 | { | |
7668 | if (fragP->tc_frag_data.is_no_transform) | |
7669 | as_bad (_("branching or jumping to a loop end may trigger hardware errata")); | |
7670 | else | |
7671 | relax_frag_add_nop (fragP); | |
7672 | } | |
7673 | frag_wane (fragP); | |
7674 | } | |
7675 | } | |
7676 | } | |
e0001a05 NC |
7677 | } |
7678 | ||
7679 | ||
7fa3d080 BW |
7680 | static bfd_boolean |
7681 | next_instr_is_loop_end (fragS *fragP) | |
e0001a05 NC |
7682 | { |
7683 | const fragS *next_fragP; | |
7684 | ||
7685 | if (next_frag_is_loop_target (fragP)) | |
7686 | return FALSE; | |
7687 | ||
7688 | next_fragP = next_non_empty_frag (fragP); | |
7689 | if (next_fragP == NULL) | |
7690 | return FALSE; | |
7691 | ||
7692 | if (!next_frag_is_loop_target (next_fragP)) | |
7693 | return FALSE; | |
7694 | ||
7695 | /* If the size is >= 3 then there is more than one instruction here. | |
7696 | The hardware bug will not fire. */ | |
7697 | if (next_fragP->fr_fix > 3) | |
7698 | return FALSE; | |
7699 | ||
7700 | return TRUE; | |
7701 | } | |
7702 | ||
7703 | ||
7704 | /* Re-process all of the fragments looking to convert all of the | |
7705 | RELAX_ADD_NOP_IF_CLOSE_LOOP_END. If there is an loop end that is | |
7706 | not MY loop's loop end within 12 bytes, add enough nops here to | |
7707 | make it at least 12 bytes away. In any case close it off with a | |
7708 | .fill 0. */ | |
7709 | ||
d77b99c9 | 7710 | static offsetT min_bytes_to_other_loop_end |
05d58145 | 7711 | (fragS *, fragS *, offsetT); |
7fa3d080 | 7712 | |
e0001a05 | 7713 | static void |
7fa3d080 | 7714 | xtensa_fix_close_loop_end_frags (void) |
e0001a05 NC |
7715 | { |
7716 | frchainS *frchP; | |
c9049d30 | 7717 | asection *s; |
e0001a05 NC |
7718 | |
7719 | /* When this routine is called, all of the subsections are still intact | |
7720 | so we walk over subsections instead of sections. */ | |
c9049d30 AM |
7721 | for (s = stdoutput->sections; s; s = s->next) |
7722 | for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next) | |
7723 | { | |
7724 | fragS *fragP; | |
e0001a05 | 7725 | |
c9049d30 | 7726 | fragS *current_target = NULL; |
e0001a05 | 7727 | |
c9049d30 AM |
7728 | /* Walk over all of the fragments in a subsection. */ |
7729 | for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next) | |
7730 | { | |
7731 | if (fragP->fr_type == rs_machine_dependent | |
7732 | && ((fragP->fr_subtype == RELAX_ALIGN_NEXT_OPCODE) | |
7733 | || (fragP->fr_subtype == RELAX_CHECK_ALIGN_NEXT_OPCODE))) | |
05d58145 | 7734 | current_target = symbol_get_frag (fragP->fr_symbol); |
e0001a05 | 7735 | |
c9049d30 AM |
7736 | if (current_target |
7737 | && fragP->fr_type == rs_machine_dependent | |
7738 | && fragP->fr_subtype == RELAX_ADD_NOP_IF_CLOSE_LOOP_END) | |
7739 | { | |
7740 | offsetT min_bytes; | |
7741 | int bytes_added = 0; | |
e0001a05 NC |
7742 | |
7743 | #define REQUIRED_LOOP_DIVIDING_BYTES 12 | |
c9049d30 AM |
7744 | /* Max out at 12. */ |
7745 | min_bytes = min_bytes_to_other_loop_end | |
7746 | (fragP->fr_next, current_target, REQUIRED_LOOP_DIVIDING_BYTES); | |
7747 | ||
7748 | if (min_bytes < REQUIRED_LOOP_DIVIDING_BYTES) | |
7749 | { | |
7750 | if (fragP->tc_frag_data.is_no_transform) | |
7751 | as_bad (_("loop end too close to another loop end may trigger hardware errata")); | |
7752 | else | |
7753 | { | |
7754 | while (min_bytes + bytes_added | |
7755 | < REQUIRED_LOOP_DIVIDING_BYTES) | |
7756 | { | |
7757 | int length = 3; | |
7758 | ||
7759 | if (fragP->fr_var < length) | |
7760 | as_fatal (_("fr_var %lu < length %d"), | |
7761 | (long) fragP->fr_var, length); | |
7762 | else | |
7763 | { | |
7764 | assemble_nop (length, | |
7765 | fragP->fr_literal + fragP->fr_fix); | |
7766 | fragP->fr_fix += length; | |
7767 | fragP->fr_var -= length; | |
7768 | } | |
7769 | bytes_added += length; | |
7770 | } | |
7771 | } | |
7772 | } | |
7773 | frag_wane (fragP); | |
7774 | } | |
9c2799c2 | 7775 | gas_assert (fragP->fr_type != rs_machine_dependent |
c9049d30 AM |
7776 | || fragP->fr_subtype != RELAX_ADD_NOP_IF_CLOSE_LOOP_END); |
7777 | } | |
7778 | } | |
e0001a05 NC |
7779 | } |
7780 | ||
7781 | ||
d77b99c9 | 7782 | static offsetT unrelaxed_frag_min_size (fragS *); |
7fa3d080 | 7783 | |
d77b99c9 | 7784 | static offsetT |
7fa3d080 BW |
7785 | min_bytes_to_other_loop_end (fragS *fragP, |
7786 | fragS *current_target, | |
d77b99c9 | 7787 | offsetT max_size) |
e0001a05 | 7788 | { |
d77b99c9 | 7789 | offsetT offset = 0; |
e0001a05 NC |
7790 | fragS *current_fragP; |
7791 | ||
7792 | for (current_fragP = fragP; | |
7793 | current_fragP; | |
7794 | current_fragP = current_fragP->fr_next) | |
7795 | { | |
7796 | if (current_fragP->tc_frag_data.is_loop_target | |
7797 | && current_fragP != current_target) | |
05d58145 | 7798 | return offset; |
e0001a05 NC |
7799 | |
7800 | offset += unrelaxed_frag_min_size (current_fragP); | |
7801 | ||
05d58145 | 7802 | if (offset >= max_size) |
e0001a05 NC |
7803 | return max_size; |
7804 | } | |
7805 | return max_size; | |
7806 | } | |
7807 | ||
7808 | ||
d77b99c9 | 7809 | static offsetT |
7fa3d080 | 7810 | unrelaxed_frag_min_size (fragS *fragP) |
e0001a05 | 7811 | { |
d77b99c9 | 7812 | offsetT size = fragP->fr_fix; |
e0001a05 | 7813 | |
d77b99c9 | 7814 | /* Add fill size. */ |
e0001a05 NC |
7815 | if (fragP->fr_type == rs_fill) |
7816 | size += fragP->fr_offset; | |
7817 | ||
7818 | return size; | |
7819 | } | |
7820 | ||
7821 | ||
d77b99c9 | 7822 | static offsetT |
7fa3d080 | 7823 | unrelaxed_frag_max_size (fragS *fragP) |
43cd72b9 | 7824 | { |
d77b99c9 | 7825 | offsetT size = fragP->fr_fix; |
43cd72b9 BW |
7826 | switch (fragP->fr_type) |
7827 | { | |
7828 | case 0: | |
c138bc38 | 7829 | /* Empty frags created by the obstack allocation scheme |
43cd72b9 BW |
7830 | end up with type 0. */ |
7831 | break; | |
7832 | case rs_fill: | |
7833 | case rs_org: | |
7834 | case rs_space: | |
7835 | size += fragP->fr_offset; | |
7836 | break; | |
7837 | case rs_align: | |
7838 | case rs_align_code: | |
7839 | case rs_align_test: | |
7840 | case rs_leb128: | |
7841 | case rs_cfa: | |
7842 | case rs_dwarf2dbg: | |
7843 | /* No further adjustments needed. */ | |
7844 | break; | |
7845 | case rs_machine_dependent: | |
7846 | if (fragP->fr_subtype != RELAX_DESIRE_ALIGN) | |
7847 | size += fragP->fr_var; | |
7848 | break; | |
7849 | default: | |
7850 | /* We had darn well better know how big it is. */ | |
9c2799c2 | 7851 | gas_assert (0); |
43cd72b9 BW |
7852 | break; |
7853 | } | |
7854 | ||
7855 | return size; | |
7856 | } | |
7857 | ||
7858 | ||
e0001a05 NC |
7859 | /* Re-process all of the fragments looking to convert all |
7860 | of the RELAX_ADD_NOP_IF_SHORT_LOOP. If: | |
7861 | ||
7862 | A) | |
7863 | 1) the instruction size count to the loop end label | |
7864 | is too short (<= 2 instructions), | |
7865 | 2) loop has a jump or branch in it | |
7866 | ||
7867 | or B) | |
43cd72b9 | 7868 | 1) workaround_all_short_loops is TRUE |
e0001a05 NC |
7869 | 2) The generating loop was a 'loopgtz' or 'loopnez' |
7870 | 3) the instruction size count to the loop end label is too short | |
7871 | (<= 2 instructions) | |
7872 | then convert this frag (and maybe the next one) to generate a NOP. | |
7873 | In any case close it off with a .fill 0. */ | |
7874 | ||
d77b99c9 | 7875 | static int count_insns_to_loop_end (fragS *, bfd_boolean, int); |
7fa3d080 BW |
7876 | static bfd_boolean branch_before_loop_end (fragS *); |
7877 | ||
e0001a05 | 7878 | static void |
7fa3d080 | 7879 | xtensa_fix_short_loop_frags (void) |
e0001a05 NC |
7880 | { |
7881 | frchainS *frchP; | |
c9049d30 | 7882 | asection *s; |
e0001a05 NC |
7883 | |
7884 | /* When this routine is called, all of the subsections are still intact | |
7885 | so we walk over subsections instead of sections. */ | |
c9049d30 AM |
7886 | for (s = stdoutput->sections; s; s = s->next) |
7887 | for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next) | |
7888 | { | |
7889 | fragS *fragP; | |
7890 | fragS *current_target = NULL; | |
7891 | xtensa_opcode current_opcode = XTENSA_UNDEFINED; | |
e0001a05 | 7892 | |
c9049d30 AM |
7893 | /* Walk over all of the fragments in a subsection. */ |
7894 | for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next) | |
7895 | { | |
7896 | if (fragP->fr_type == rs_machine_dependent | |
7897 | && ((fragP->fr_subtype == RELAX_ALIGN_NEXT_OPCODE) | |
7898 | || (fragP->fr_subtype == RELAX_CHECK_ALIGN_NEXT_OPCODE))) | |
7899 | { | |
7900 | TInsn t_insn; | |
7901 | fragS *loop_frag = next_non_empty_frag (fragP); | |
7902 | tinsn_from_chars (&t_insn, loop_frag->fr_opcode, 0); | |
7903 | current_target = symbol_get_frag (fragP->fr_symbol); | |
7904 | current_opcode = t_insn.opcode; | |
9c2799c2 | 7905 | gas_assert (xtensa_opcode_is_loop (xtensa_default_isa, |
64b607e6 | 7906 | current_opcode) == 1); |
c9049d30 | 7907 | } |
e0001a05 | 7908 | |
c9049d30 AM |
7909 | if (fragP->fr_type == rs_machine_dependent |
7910 | && fragP->fr_subtype == RELAX_ADD_NOP_IF_SHORT_LOOP) | |
7911 | { | |
7912 | if (count_insns_to_loop_end (fragP->fr_next, TRUE, 3) < 3 | |
7913 | && (branch_before_loop_end (fragP->fr_next) | |
7914 | || (workaround_all_short_loops | |
7915 | && current_opcode != XTENSA_UNDEFINED | |
7916 | && current_opcode != xtensa_loop_opcode))) | |
7917 | { | |
7918 | if (fragP->tc_frag_data.is_no_transform) | |
7919 | as_bad (_("loop containing less than three instructions may trigger hardware errata")); | |
7920 | else | |
7921 | relax_frag_add_nop (fragP); | |
7922 | } | |
7923 | frag_wane (fragP); | |
7924 | } | |
7925 | } | |
7926 | } | |
e0001a05 NC |
7927 | } |
7928 | ||
7929 | ||
d77b99c9 | 7930 | static int unrelaxed_frag_min_insn_count (fragS *); |
7fa3d080 | 7931 | |
d77b99c9 | 7932 | static int |
7fa3d080 BW |
7933 | count_insns_to_loop_end (fragS *base_fragP, |
7934 | bfd_boolean count_relax_add, | |
d77b99c9 | 7935 | int max_count) |
e0001a05 NC |
7936 | { |
7937 | fragS *fragP = NULL; | |
d77b99c9 | 7938 | int insn_count = 0; |
e0001a05 NC |
7939 | |
7940 | fragP = base_fragP; | |
7941 | ||
7942 | for (; fragP && !fragP->tc_frag_data.is_loop_target; fragP = fragP->fr_next) | |
7943 | { | |
7944 | insn_count += unrelaxed_frag_min_insn_count (fragP); | |
7945 | if (insn_count >= max_count) | |
7946 | return max_count; | |
7947 | ||
7948 | if (count_relax_add) | |
7949 | { | |
7950 | if (fragP->fr_type == rs_machine_dependent | |
7951 | && fragP->fr_subtype == RELAX_ADD_NOP_IF_SHORT_LOOP) | |
7952 | { | |
7953 | /* In order to add the appropriate number of | |
7954 | NOPs, we count an instruction for downstream | |
7955 | occurrences. */ | |
7956 | insn_count++; | |
7957 | if (insn_count >= max_count) | |
7958 | return max_count; | |
7959 | } | |
7960 | } | |
7961 | } | |
7962 | return insn_count; | |
7963 | } | |
7964 | ||
7965 | ||
d77b99c9 | 7966 | static int |
7fa3d080 | 7967 | unrelaxed_frag_min_insn_count (fragS *fragP) |
e0001a05 | 7968 | { |
43cd72b9 BW |
7969 | xtensa_isa isa = xtensa_default_isa; |
7970 | static xtensa_insnbuf insnbuf = NULL; | |
d77b99c9 | 7971 | int insn_count = 0; |
e0001a05 NC |
7972 | int offset = 0; |
7973 | ||
7974 | if (!fragP->tc_frag_data.is_insn) | |
7975 | return insn_count; | |
7976 | ||
43cd72b9 BW |
7977 | if (!insnbuf) |
7978 | insnbuf = xtensa_insnbuf_alloc (isa); | |
7979 | ||
e0001a05 NC |
7980 | /* Decode the fixed instructions. */ |
7981 | while (offset < fragP->fr_fix) | |
7982 | { | |
43cd72b9 BW |
7983 | xtensa_format fmt; |
7984 | ||
d77b99c9 BW |
7985 | xtensa_insnbuf_from_chars |
7986 | (isa, insnbuf, (unsigned char *) fragP->fr_literal + offset, 0); | |
43cd72b9 BW |
7987 | fmt = xtensa_format_decode (isa, insnbuf); |
7988 | ||
7989 | if (fmt == XTENSA_UNDEFINED) | |
e0001a05 NC |
7990 | { |
7991 | as_fatal (_("undecodable instruction in instruction frag")); | |
7992 | return insn_count; | |
7993 | } | |
43cd72b9 | 7994 | offset += xtensa_format_length (isa, fmt); |
e0001a05 NC |
7995 | insn_count++; |
7996 | } | |
7997 | ||
7998 | return insn_count; | |
7999 | } | |
8000 | ||
8001 | ||
7fa3d080 BW |
8002 | static bfd_boolean unrelaxed_frag_has_b_j (fragS *); |
8003 | ||
43cd72b9 | 8004 | static bfd_boolean |
7fa3d080 | 8005 | branch_before_loop_end (fragS *base_fragP) |
e0001a05 NC |
8006 | { |
8007 | fragS *fragP; | |
8008 | ||
8009 | for (fragP = base_fragP; | |
8010 | fragP && !fragP->tc_frag_data.is_loop_target; | |
8011 | fragP = fragP->fr_next) | |
8012 | { | |
8013 | if (unrelaxed_frag_has_b_j (fragP)) | |
8014 | return TRUE; | |
8015 | } | |
8016 | return FALSE; | |
8017 | } | |
8018 | ||
8019 | ||
43cd72b9 | 8020 | static bfd_boolean |
7fa3d080 | 8021 | unrelaxed_frag_has_b_j (fragS *fragP) |
e0001a05 | 8022 | { |
43cd72b9 BW |
8023 | static xtensa_insnbuf insnbuf = NULL; |
8024 | xtensa_isa isa = xtensa_default_isa; | |
e0001a05 NC |
8025 | int offset = 0; |
8026 | ||
8027 | if (!fragP->tc_frag_data.is_insn) | |
8028 | return FALSE; | |
8029 | ||
43cd72b9 BW |
8030 | if (!insnbuf) |
8031 | insnbuf = xtensa_insnbuf_alloc (isa); | |
8032 | ||
e0001a05 NC |
8033 | /* Decode the fixed instructions. */ |
8034 | while (offset < fragP->fr_fix) | |
8035 | { | |
43cd72b9 BW |
8036 | xtensa_format fmt; |
8037 | int slot; | |
8038 | ||
d77b99c9 BW |
8039 | xtensa_insnbuf_from_chars |
8040 | (isa, insnbuf, (unsigned char *) fragP->fr_literal + offset, 0); | |
43cd72b9 BW |
8041 | fmt = xtensa_format_decode (isa, insnbuf); |
8042 | if (fmt == XTENSA_UNDEFINED) | |
8043 | return FALSE; | |
8044 | ||
8045 | for (slot = 0; slot < xtensa_format_num_slots (isa, fmt); slot++) | |
e0001a05 | 8046 | { |
43cd72b9 BW |
8047 | xtensa_opcode opcode = |
8048 | get_opcode_from_buf (fragP->fr_literal + offset, slot); | |
8049 | if (xtensa_opcode_is_branch (isa, opcode) == 1 | |
8050 | || xtensa_opcode_is_jump (isa, opcode) == 1) | |
8051 | return TRUE; | |
e0001a05 | 8052 | } |
43cd72b9 | 8053 | offset += xtensa_format_length (isa, fmt); |
e0001a05 NC |
8054 | } |
8055 | return FALSE; | |
8056 | } | |
8057 | ||
8058 | ||
8059 | /* Checks to be made after initial assembly but before relaxation. */ | |
8060 | ||
7fa3d080 BW |
8061 | static bfd_boolean is_empty_loop (const TInsn *, fragS *); |
8062 | static bfd_boolean is_local_forward_loop (const TInsn *, fragS *); | |
8063 | ||
e0001a05 | 8064 | static void |
7fa3d080 | 8065 | xtensa_sanity_check (void) |
e0001a05 NC |
8066 | { |
8067 | char *file_name; | |
d77b99c9 | 8068 | unsigned line; |
e0001a05 | 8069 | frchainS *frchP; |
c9049d30 | 8070 | asection *s; |
e0001a05 NC |
8071 | |
8072 | as_where (&file_name, &line); | |
c9049d30 AM |
8073 | for (s = stdoutput->sections; s; s = s->next) |
8074 | for (frchP = seg_info (s)->frchainP; frchP; frchP = frchP->frch_next) | |
8075 | { | |
8076 | fragS *fragP; | |
e0001a05 | 8077 | |
c9049d30 AM |
8078 | /* Walk over all of the fragments in a subsection. */ |
8079 | for (fragP = frchP->frch_root; fragP; fragP = fragP->fr_next) | |
8080 | { | |
c9049d30 | 8081 | if (fragP->fr_type == rs_machine_dependent |
a7284bf1 BW |
8082 | && fragP->fr_subtype == RELAX_SLOTS |
8083 | && fragP->tc_frag_data.slot_subtypes[0] == RELAX_IMMED) | |
c9049d30 AM |
8084 | { |
8085 | static xtensa_insnbuf insnbuf = NULL; | |
8086 | TInsn t_insn; | |
8087 | ||
8088 | if (fragP->fr_opcode != NULL) | |
8089 | { | |
8090 | if (!insnbuf) | |
8091 | insnbuf = xtensa_insnbuf_alloc (xtensa_default_isa); | |
8092 | tinsn_from_chars (&t_insn, fragP->fr_opcode, 0); | |
8093 | tinsn_immed_from_frag (&t_insn, fragP, 0); | |
8094 | ||
8095 | if (xtensa_opcode_is_loop (xtensa_default_isa, | |
8096 | t_insn.opcode) == 1) | |
8097 | { | |
8098 | if (is_empty_loop (&t_insn, fragP)) | |
8099 | { | |
8100 | new_logical_line (fragP->fr_file, fragP->fr_line); | |
8101 | as_bad (_("invalid empty loop")); | |
8102 | } | |
8103 | if (!is_local_forward_loop (&t_insn, fragP)) | |
8104 | { | |
8105 | new_logical_line (fragP->fr_file, fragP->fr_line); | |
8106 | as_bad (_("loop target does not follow " | |
8107 | "loop instruction in section")); | |
8108 | } | |
8109 | } | |
8110 | } | |
8111 | } | |
8112 | } | |
8113 | } | |
e0001a05 NC |
8114 | new_logical_line (file_name, line); |
8115 | } | |
8116 | ||
8117 | ||
8118 | #define LOOP_IMMED_OPN 1 | |
8119 | ||
43cd72b9 | 8120 | /* Return TRUE if the loop target is the next non-zero fragment. */ |
e0001a05 | 8121 | |
7fa3d080 BW |
8122 | static bfd_boolean |
8123 | is_empty_loop (const TInsn *insn, fragS *fragP) | |
e0001a05 | 8124 | { |
91d6fa6a | 8125 | const expressionS *exp; |
e0001a05 NC |
8126 | symbolS *symbolP; |
8127 | fragS *next_fragP; | |
8128 | ||
8129 | if (insn->insn_type != ITYPE_INSN) | |
8130 | return FALSE; | |
8131 | ||
43cd72b9 | 8132 | if (xtensa_opcode_is_loop (xtensa_default_isa, insn->opcode) != 1) |
e0001a05 NC |
8133 | return FALSE; |
8134 | ||
8135 | if (insn->ntok <= LOOP_IMMED_OPN) | |
8136 | return FALSE; | |
8137 | ||
91d6fa6a | 8138 | exp = &insn->tok[LOOP_IMMED_OPN]; |
e0001a05 | 8139 | |
91d6fa6a | 8140 | if (exp->X_op != O_symbol) |
e0001a05 NC |
8141 | return FALSE; |
8142 | ||
91d6fa6a | 8143 | symbolP = exp->X_add_symbol; |
e0001a05 NC |
8144 | if (!symbolP) |
8145 | return FALSE; | |
8146 | ||
8147 | if (symbol_get_frag (symbolP) == NULL) | |
8148 | return FALSE; | |
8149 | ||
8150 | if (S_GET_VALUE (symbolP) != 0) | |
8151 | return FALSE; | |
8152 | ||
8153 | /* Walk through the zero-size fragments from this one. If we find | |
8154 | the target fragment, then this is a zero-size loop. */ | |
43cd72b9 | 8155 | |
e0001a05 NC |
8156 | for (next_fragP = fragP->fr_next; |
8157 | next_fragP != NULL; | |
8158 | next_fragP = next_fragP->fr_next) | |
8159 | { | |
8160 | if (next_fragP == symbol_get_frag (symbolP)) | |
8161 | return TRUE; | |
8162 | if (next_fragP->fr_fix != 0) | |
8163 | return FALSE; | |
8164 | } | |
8165 | return FALSE; | |
8166 | } | |
8167 | ||
8168 | ||
7fa3d080 BW |
8169 | static bfd_boolean |
8170 | is_local_forward_loop (const TInsn *insn, fragS *fragP) | |
e0001a05 | 8171 | { |
91d6fa6a | 8172 | const expressionS *exp; |
e0001a05 NC |
8173 | symbolS *symbolP; |
8174 | fragS *next_fragP; | |
8175 | ||
8176 | if (insn->insn_type != ITYPE_INSN) | |
8177 | return FALSE; | |
8178 | ||
64b607e6 | 8179 | if (xtensa_opcode_is_loop (xtensa_default_isa, insn->opcode) != 1) |
e0001a05 NC |
8180 | return FALSE; |
8181 | ||
8182 | if (insn->ntok <= LOOP_IMMED_OPN) | |
8183 | return FALSE; | |
8184 | ||
91d6fa6a | 8185 | exp = &insn->tok[LOOP_IMMED_OPN]; |
e0001a05 | 8186 | |
91d6fa6a | 8187 | if (exp->X_op != O_symbol) |
e0001a05 NC |
8188 | return FALSE; |
8189 | ||
91d6fa6a | 8190 | symbolP = exp->X_add_symbol; |
e0001a05 NC |
8191 | if (!symbolP) |
8192 | return FALSE; | |
8193 | ||
8194 | if (symbol_get_frag (symbolP) == NULL) | |
8195 | return FALSE; | |
8196 | ||
8197 | /* Walk through fragments until we find the target. | |
8198 | If we do not find the target, then this is an invalid loop. */ | |
43cd72b9 | 8199 | |
e0001a05 NC |
8200 | for (next_fragP = fragP->fr_next; |
8201 | next_fragP != NULL; | |
8202 | next_fragP = next_fragP->fr_next) | |
43cd72b9 BW |
8203 | { |
8204 | if (next_fragP == symbol_get_frag (symbolP)) | |
8205 | return TRUE; | |
8206 | } | |
e0001a05 NC |
8207 | |
8208 | return FALSE; | |
8209 | } | |
8210 | ||
2caa7ca0 BW |
8211 | |
8212 | #define XTINFO_NAME "Xtensa_Info" | |
8213 | #define XTINFO_NAMESZ 12 | |
8214 | #define XTINFO_TYPE 1 | |
8215 | ||
8216 | static void | |
8217 | xtensa_add_config_info (void) | |
8218 | { | |
8219 | asection *info_sec; | |
8220 | char *data, *p; | |
8221 | int sz; | |
8222 | ||
8223 | info_sec = subseg_new (".xtensa.info", 0); | |
8224 | bfd_set_section_flags (stdoutput, info_sec, SEC_HAS_CONTENTS | SEC_READONLY); | |
8225 | ||
8226 | data = xmalloc (100); | |
8227 | sprintf (data, "USE_ABSOLUTE_LITERALS=%d\nABI=%d\n", | |
8228 | XSHAL_USE_ABSOLUTE_LITERALS, XSHAL_ABI); | |
8229 | sz = strlen (data) + 1; | |
8230 | ||
8231 | /* Add enough null terminators to pad to a word boundary. */ | |
8232 | do | |
8233 | data[sz++] = 0; | |
8234 | while ((sz & 3) != 0); | |
8235 | ||
8236 | /* Follow the standard note section layout: | |
8237 | First write the length of the name string. */ | |
8238 | p = frag_more (4); | |
8239 | md_number_to_chars (p, (valueT) XTINFO_NAMESZ, 4); | |
8240 | ||
8241 | /* Next comes the length of the "descriptor", i.e., the actual data. */ | |
8242 | p = frag_more (4); | |
8243 | md_number_to_chars (p, (valueT) sz, 4); | |
8244 | ||
8245 | /* Write the note type. */ | |
8246 | p = frag_more (4); | |
8247 | md_number_to_chars (p, (valueT) XTINFO_TYPE, 4); | |
8248 | ||
8249 | /* Write the name field. */ | |
8250 | p = frag_more (XTINFO_NAMESZ); | |
8251 | memcpy (p, XTINFO_NAME, XTINFO_NAMESZ); | |
8252 | ||
8253 | /* Finally, write the descriptor. */ | |
8254 | p = frag_more (sz); | |
8255 | memcpy (p, data, sz); | |
8256 | ||
8257 | free (data); | |
8258 | } | |
8259 | ||
e0001a05 NC |
8260 | \f |
8261 | /* Alignment Functions. */ | |
8262 | ||
d77b99c9 BW |
8263 | static int |
8264 | get_text_align_power (unsigned target_size) | |
e0001a05 | 8265 | { |
03aaa593 BW |
8266 | if (target_size <= 4) |
8267 | return 2; | |
19ef5f3d SA |
8268 | |
8269 | if (target_size <= 8) | |
8270 | return 3; | |
8271 | ||
8272 | if (target_size <= 16) | |
8273 | return 4; | |
8274 | ||
8275 | if (target_size <= 32) | |
8276 | return 5; | |
8277 | ||
8278 | if (target_size <= 64) | |
8279 | return 6; | |
8280 | ||
8281 | if (target_size <= 128) | |
8282 | return 7; | |
8283 | ||
8284 | if (target_size <= 256) | |
8285 | return 8; | |
8286 | ||
8287 | if (target_size <= 512) | |
8288 | return 9; | |
8289 | ||
8290 | if (target_size <= 1024) | |
8291 | return 10; | |
8292 | ||
8293 | gas_assert (0); | |
8294 | return 0; | |
e0001a05 NC |
8295 | } |
8296 | ||
8297 | ||
d77b99c9 | 8298 | static int |
7fa3d080 BW |
8299 | get_text_align_max_fill_size (int align_pow, |
8300 | bfd_boolean use_nops, | |
8301 | bfd_boolean use_no_density) | |
e0001a05 NC |
8302 | { |
8303 | if (!use_nops) | |
8304 | return (1 << align_pow); | |
8305 | if (use_no_density) | |
8306 | return 3 * (1 << align_pow); | |
8307 | ||
8308 | return 1 + (1 << align_pow); | |
8309 | } | |
8310 | ||
8311 | ||
d77b99c9 BW |
8312 | /* Calculate the minimum bytes of fill needed at "address" to align a |
8313 | target instruction of size "target_size" so that it does not cross a | |
8314 | power-of-two boundary specified by "align_pow". If "use_nops" is FALSE, | |
8315 | the fill can be an arbitrary number of bytes. Otherwise, the space must | |
8316 | be filled by NOP instructions. */ | |
e0001a05 | 8317 | |
d77b99c9 | 8318 | static int |
7fa3d080 BW |
8319 | get_text_align_fill_size (addressT address, |
8320 | int align_pow, | |
8321 | int target_size, | |
8322 | bfd_boolean use_nops, | |
8323 | bfd_boolean use_no_density) | |
e0001a05 | 8324 | { |
d77b99c9 BW |
8325 | addressT alignment, fill, fill_limit, fill_step; |
8326 | bfd_boolean skip_one = FALSE; | |
e0001a05 | 8327 | |
d77b99c9 | 8328 | alignment = (1 << align_pow); |
9c2799c2 | 8329 | gas_assert (target_size > 0 && alignment >= (addressT) target_size); |
c138bc38 | 8330 | |
e0001a05 NC |
8331 | if (!use_nops) |
8332 | { | |
d77b99c9 BW |
8333 | fill_limit = alignment; |
8334 | fill_step = 1; | |
e0001a05 | 8335 | } |
d77b99c9 | 8336 | else if (!use_no_density) |
e0001a05 | 8337 | { |
d77b99c9 BW |
8338 | /* Combine 2- and 3-byte NOPs to fill anything larger than one. */ |
8339 | fill_limit = alignment * 2; | |
8340 | fill_step = 1; | |
8341 | skip_one = TRUE; | |
e0001a05 NC |
8342 | } |
8343 | else | |
8344 | { | |
d77b99c9 BW |
8345 | /* Fill with 3-byte NOPs -- can only fill multiples of 3. */ |
8346 | fill_limit = alignment * 3; | |
8347 | fill_step = 3; | |
8348 | } | |
e0001a05 | 8349 | |
d77b99c9 BW |
8350 | /* Try all fill sizes until finding one that works. */ |
8351 | for (fill = 0; fill < fill_limit; fill += fill_step) | |
8352 | { | |
8353 | if (skip_one && fill == 1) | |
8354 | continue; | |
8355 | if ((address + fill) >> align_pow | |
8356 | == (address + fill + target_size - 1) >> align_pow) | |
8357 | return fill; | |
e0001a05 | 8358 | } |
9c2799c2 | 8359 | gas_assert (0); |
e0001a05 NC |
8360 | return 0; |
8361 | } | |
8362 | ||
8363 | ||
664df4e4 BW |
8364 | static int |
8365 | branch_align_power (segT sec) | |
8366 | { | |
19ef5f3d SA |
8367 | /* If the Xtensa processor has a fetch width of X, and |
8368 | the section is aligned to at least that boundary, then a branch | |
8369 | target need only fit within that aligned block of memory to avoid | |
8370 | a stall. Otherwise, try to fit branch targets within 4-byte | |
8371 | aligned blocks (which may be insufficient, e.g., if the section | |
8372 | has no alignment, but it's good enough). */ | |
8373 | int fetch_align = get_text_align_power(xtensa_fetch_width); | |
8374 | int sec_align = get_recorded_alignment (sec); | |
8375 | ||
8376 | if (sec_align >= fetch_align) | |
8377 | return fetch_align; | |
664df4e4 BW |
8378 | |
8379 | return 2; | |
8380 | } | |
8381 | ||
8382 | ||
e0001a05 NC |
8383 | /* This will assert if it is not possible. */ |
8384 | ||
d77b99c9 BW |
8385 | static int |
8386 | get_text_align_nop_count (offsetT fill_size, bfd_boolean use_no_density) | |
e0001a05 | 8387 | { |
d77b99c9 BW |
8388 | int count = 0; |
8389 | ||
e0001a05 NC |
8390 | if (use_no_density) |
8391 | { | |
9c2799c2 | 8392 | gas_assert (fill_size % 3 == 0); |
e0001a05 NC |
8393 | return (fill_size / 3); |
8394 | } | |
8395 | ||
9c2799c2 | 8396 | gas_assert (fill_size != 1); /* Bad argument. */ |
e0001a05 NC |
8397 | |
8398 | while (fill_size > 1) | |
8399 | { | |
d77b99c9 | 8400 | int insn_size = 3; |
e0001a05 NC |
8401 | if (fill_size == 2 || fill_size == 4) |
8402 | insn_size = 2; | |
8403 | fill_size -= insn_size; | |
8404 | count++; | |
8405 | } | |
9c2799c2 | 8406 | gas_assert (fill_size != 1); /* Bad algorithm. */ |
e0001a05 NC |
8407 | return count; |
8408 | } | |
8409 | ||
8410 | ||
d77b99c9 BW |
8411 | static int |
8412 | get_text_align_nth_nop_size (offsetT fill_size, | |
8413 | int n, | |
7fa3d080 | 8414 | bfd_boolean use_no_density) |
e0001a05 | 8415 | { |
d77b99c9 | 8416 | int count = 0; |
e0001a05 NC |
8417 | |
8418 | if (use_no_density) | |
8419 | return 3; | |
8420 | ||
9c2799c2 | 8421 | gas_assert (fill_size != 1); /* Bad argument. */ |
d77b99c9 | 8422 | |
e0001a05 NC |
8423 | while (fill_size > 1) |
8424 | { | |
d77b99c9 | 8425 | int insn_size = 3; |
e0001a05 NC |
8426 | if (fill_size == 2 || fill_size == 4) |
8427 | insn_size = 2; | |
8428 | fill_size -= insn_size; | |
8429 | count++; | |
8430 | if (n + 1 == count) | |
8431 | return insn_size; | |
8432 | } | |
9c2799c2 | 8433 | gas_assert (0); |
e0001a05 NC |
8434 | return 0; |
8435 | } | |
8436 | ||
8437 | ||
8438 | /* For the given fragment, find the appropriate address | |
8439 | for it to begin at if we are using NOPs to align it. */ | |
8440 | ||
8441 | static addressT | |
7fa3d080 | 8442 | get_noop_aligned_address (fragS *fragP, addressT address) |
e0001a05 | 8443 | { |
43cd72b9 BW |
8444 | /* The rule is: get next fragment's FIRST instruction. Find |
8445 | the smallest number of bytes that need to be added to | |
8446 | ensure that the next fragment's FIRST instruction will fit | |
8447 | in a single word. | |
c138bc38 | 8448 | |
43cd72b9 BW |
8449 | E.G., 2 bytes : 0, 1, 2 mod 4 |
8450 | 3 bytes: 0, 1 mod 4 | |
c138bc38 | 8451 | |
43cd72b9 BW |
8452 | If the FIRST instruction MIGHT be relaxed, |
8453 | assume that it will become a 3-byte instruction. | |
c138bc38 | 8454 | |
43cd72b9 BW |
8455 | Note again here that LOOP instructions are not bundleable, |
8456 | and this relaxation only applies to LOOP opcodes. */ | |
c138bc38 | 8457 | |
d77b99c9 | 8458 | int fill_size = 0; |
43cd72b9 BW |
8459 | int first_insn_size; |
8460 | int loop_insn_size; | |
8461 | addressT pre_opcode_bytes; | |
d77b99c9 | 8462 | int align_power; |
43cd72b9 BW |
8463 | fragS *first_insn; |
8464 | xtensa_opcode opcode; | |
8465 | bfd_boolean is_loop; | |
e0001a05 | 8466 | |
9c2799c2 NC |
8467 | gas_assert (fragP->fr_type == rs_machine_dependent); |
8468 | gas_assert (fragP->fr_subtype == RELAX_ALIGN_NEXT_OPCODE); | |
e0001a05 | 8469 | |
43cd72b9 BW |
8470 | /* Find the loop frag. */ |
8471 | first_insn = next_non_empty_frag (fragP); | |
8472 | /* Now find the first insn frag. */ | |
8473 | first_insn = next_non_empty_frag (first_insn); | |
e0001a05 | 8474 | |
43cd72b9 | 8475 | is_loop = next_frag_opcode_is_loop (fragP, &opcode); |
9c2799c2 | 8476 | gas_assert (is_loop); |
43cd72b9 | 8477 | loop_insn_size = xg_get_single_size (opcode); |
e0001a05 | 8478 | |
43cd72b9 BW |
8479 | pre_opcode_bytes = next_frag_pre_opcode_bytes (fragP); |
8480 | pre_opcode_bytes += loop_insn_size; | |
e0001a05 | 8481 | |
43cd72b9 BW |
8482 | /* For loops, the alignment depends on the size of the |
8483 | instruction following the loop, not the LOOP instruction. */ | |
e0001a05 | 8484 | |
43cd72b9 | 8485 | if (first_insn == NULL) |
03aaa593 BW |
8486 | first_insn_size = xtensa_fetch_width; |
8487 | else | |
8488 | first_insn_size = get_loop_align_size (frag_format_size (first_insn)); | |
e0001a05 | 8489 | |
43cd72b9 | 8490 | /* If it was 8, then we'll need a larger alignment for the section. */ |
d77b99c9 BW |
8491 | align_power = get_text_align_power (first_insn_size); |
8492 | record_alignment (now_seg, align_power); | |
c138bc38 | 8493 | |
43cd72b9 | 8494 | fill_size = get_text_align_fill_size |
d77b99c9 BW |
8495 | (address + pre_opcode_bytes, align_power, first_insn_size, TRUE, |
8496 | fragP->tc_frag_data.is_no_density); | |
e0001a05 NC |
8497 | |
8498 | return address + fill_size; | |
8499 | } | |
8500 | ||
8501 | ||
43cd72b9 BW |
8502 | /* 3 mechanisms for relaxing an alignment: |
8503 | ||
8504 | Align to a power of 2. | |
8505 | Align so the next fragment's instruction does not cross a word boundary. | |
8506 | Align the current instruction so that if the next instruction | |
8507 | were 3 bytes, it would not cross a word boundary. | |
8508 | ||
e0001a05 NC |
8509 | We can align with: |
8510 | ||
43cd72b9 BW |
8511 | zeros - This is easy; always insert zeros. |
8512 | nops - 3-byte and 2-byte instructions | |
8513 | 2 - 2-byte nop | |
8514 | 3 - 3-byte nop | |
8515 | 4 - 2 2-byte nops | |
8516 | >=5 : 3-byte instruction + fn (n-3) | |
e0001a05 NC |
8517 | widening - widen previous instructions. */ |
8518 | ||
d77b99c9 BW |
8519 | static offsetT |
8520 | get_aligned_diff (fragS *fragP, addressT address, offsetT *max_diff) | |
e0001a05 | 8521 | { |
43cd72b9 BW |
8522 | addressT target_address, loop_insn_offset; |
8523 | int target_size; | |
8524 | xtensa_opcode loop_opcode; | |
8525 | bfd_boolean is_loop; | |
d77b99c9 BW |
8526 | int align_power; |
8527 | offsetT opt_diff; | |
5f9084e9 | 8528 | offsetT branch_align; |
def13efb | 8529 | fragS *loop_frag; |
e0001a05 | 8530 | |
9c2799c2 | 8531 | gas_assert (fragP->fr_type == rs_machine_dependent); |
43cd72b9 | 8532 | switch (fragP->fr_subtype) |
e0001a05 | 8533 | { |
43cd72b9 BW |
8534 | case RELAX_DESIRE_ALIGN: |
8535 | target_size = next_frag_format_size (fragP); | |
8536 | if (target_size == XTENSA_UNDEFINED) | |
8537 | target_size = 3; | |
664df4e4 BW |
8538 | align_power = branch_align_power (now_seg); |
8539 | branch_align = 1 << align_power; | |
0e5cd789 BW |
8540 | /* Don't count on the section alignment being as large as the target. */ |
8541 | if (target_size > branch_align) | |
8542 | target_size = branch_align; | |
d77b99c9 | 8543 | opt_diff = get_text_align_fill_size (address, align_power, |
43cd72b9 BW |
8544 | target_size, FALSE, FALSE); |
8545 | ||
664df4e4 BW |
8546 | *max_diff = (opt_diff + branch_align |
8547 | - (target_size + ((address + opt_diff) % branch_align))); | |
9c2799c2 | 8548 | gas_assert (*max_diff >= opt_diff); |
43cd72b9 | 8549 | return opt_diff; |
e0001a05 | 8550 | |
43cd72b9 | 8551 | case RELAX_ALIGN_NEXT_OPCODE: |
def13efb BW |
8552 | /* The next non-empty frag after this one holds the LOOP instruction |
8553 | that needs to be aligned. The required alignment depends on the | |
8554 | size of the next non-empty frag after the loop frag, i.e., the | |
8555 | first instruction in the loop. */ | |
8556 | loop_frag = next_non_empty_frag (fragP); | |
8557 | target_size = get_loop_align_size (next_frag_format_size (loop_frag)); | |
43cd72b9 BW |
8558 | loop_insn_offset = 0; |
8559 | is_loop = next_frag_opcode_is_loop (fragP, &loop_opcode); | |
9c2799c2 | 8560 | gas_assert (is_loop); |
43cd72b9 BW |
8561 | |
8562 | /* If the loop has been expanded then the LOOP instruction | |
8563 | could be at an offset from this fragment. */ | |
def13efb | 8564 | if (loop_frag->tc_frag_data.slot_subtypes[0] != RELAX_IMMED) |
43cd72b9 BW |
8565 | loop_insn_offset = get_expanded_loop_offset (loop_opcode); |
8566 | ||
43cd72b9 BW |
8567 | /* In an ideal world, which is what we are shooting for here, |
8568 | we wouldn't need to use any NOPs immediately prior to the | |
8569 | LOOP instruction. If this approach fails, relax_frag_loop_align | |
8570 | will call get_noop_aligned_address. */ | |
8571 | target_address = | |
8572 | address + loop_insn_offset + xg_get_single_size (loop_opcode); | |
def13efb | 8573 | align_power = get_text_align_power (target_size); |
d77b99c9 | 8574 | opt_diff = get_text_align_fill_size (target_address, align_power, |
43cd72b9 BW |
8575 | target_size, FALSE, FALSE); |
8576 | ||
8577 | *max_diff = xtensa_fetch_width | |
8578 | - ((target_address + opt_diff) % xtensa_fetch_width) | |
8579 | - target_size + opt_diff; | |
9c2799c2 | 8580 | gas_assert (*max_diff >= opt_diff); |
43cd72b9 | 8581 | return opt_diff; |
e0001a05 | 8582 | |
43cd72b9 BW |
8583 | default: |
8584 | break; | |
e0001a05 | 8585 | } |
9c2799c2 | 8586 | gas_assert (0); |
43cd72b9 | 8587 | return 0; |
e0001a05 NC |
8588 | } |
8589 | ||
8590 | \f | |
8591 | /* md_relax_frag Hook and Helper Functions. */ | |
8592 | ||
7fa3d080 BW |
8593 | static long relax_frag_loop_align (fragS *, long); |
8594 | static long relax_frag_for_align (fragS *, long); | |
8595 | static long relax_frag_immed | |
8596 | (segT, fragS *, long, int, xtensa_format, int, int *, bfd_boolean); | |
8597 | ||
8598 | ||
e0001a05 NC |
8599 | /* Return the number of bytes added to this fragment, given that the |
8600 | input has been stretched already by "stretch". */ | |
8601 | ||
8602 | long | |
7fa3d080 | 8603 | xtensa_relax_frag (fragS *fragP, long stretch, int *stretched_p) |
e0001a05 | 8604 | { |
43cd72b9 | 8605 | xtensa_isa isa = xtensa_default_isa; |
e0001a05 NC |
8606 | int unreported = fragP->tc_frag_data.unreported_expansion; |
8607 | long new_stretch = 0; | |
8608 | char *file_name; | |
d77b99c9 BW |
8609 | unsigned line; |
8610 | int lit_size; | |
43cd72b9 BW |
8611 | static xtensa_insnbuf vbuf = NULL; |
8612 | int slot, num_slots; | |
8613 | xtensa_format fmt; | |
e0001a05 NC |
8614 | |
8615 | as_where (&file_name, &line); | |
8616 | new_logical_line (fragP->fr_file, fragP->fr_line); | |
8617 | ||
8618 | fragP->tc_frag_data.unreported_expansion = 0; | |
8619 | ||
8620 | switch (fragP->fr_subtype) | |
8621 | { | |
8622 | case RELAX_ALIGN_NEXT_OPCODE: | |
8623 | /* Always convert. */ | |
43cd72b9 BW |
8624 | if (fragP->tc_frag_data.relax_seen) |
8625 | new_stretch = relax_frag_loop_align (fragP, stretch); | |
e0001a05 NC |
8626 | break; |
8627 | ||
8628 | case RELAX_LOOP_END: | |
8629 | /* Do nothing. */ | |
8630 | break; | |
8631 | ||
8632 | case RELAX_LOOP_END_ADD_NOP: | |
8633 | /* Add a NOP and switch to .fill 0. */ | |
8634 | new_stretch = relax_frag_add_nop (fragP); | |
43cd72b9 | 8635 | frag_wane (fragP); |
e0001a05 NC |
8636 | break; |
8637 | ||
8638 | case RELAX_DESIRE_ALIGN: | |
43cd72b9 | 8639 | /* Do nothing. The narrowing before this frag will either align |
e0001a05 NC |
8640 | it or not. */ |
8641 | break; | |
8642 | ||
8643 | case RELAX_LITERAL: | |
8644 | case RELAX_LITERAL_FINAL: | |
8645 | return 0; | |
8646 | ||
8647 | case RELAX_LITERAL_NR: | |
8648 | lit_size = 4; | |
8649 | fragP->fr_subtype = RELAX_LITERAL_FINAL; | |
9c2799c2 | 8650 | gas_assert (unreported == lit_size); |
e0001a05 NC |
8651 | memset (&fragP->fr_literal[fragP->fr_fix], 0, 4); |
8652 | fragP->fr_var -= lit_size; | |
8653 | fragP->fr_fix += lit_size; | |
8654 | new_stretch = 4; | |
8655 | break; | |
8656 | ||
43cd72b9 BW |
8657 | case RELAX_SLOTS: |
8658 | if (vbuf == NULL) | |
8659 | vbuf = xtensa_insnbuf_alloc (isa); | |
8660 | ||
d77b99c9 BW |
8661 | xtensa_insnbuf_from_chars |
8662 | (isa, vbuf, (unsigned char *) fragP->fr_opcode, 0); | |
43cd72b9 BW |
8663 | fmt = xtensa_format_decode (isa, vbuf); |
8664 | num_slots = xtensa_format_num_slots (isa, fmt); | |
e0001a05 | 8665 | |
43cd72b9 BW |
8666 | for (slot = 0; slot < num_slots; slot++) |
8667 | { | |
8668 | switch (fragP->tc_frag_data.slot_subtypes[slot]) | |
8669 | { | |
8670 | case RELAX_NARROW: | |
8671 | if (fragP->tc_frag_data.relax_seen) | |
8672 | new_stretch += relax_frag_for_align (fragP, stretch); | |
8673 | break; | |
8674 | ||
8675 | case RELAX_IMMED: | |
8676 | case RELAX_IMMED_STEP1: | |
8677 | case RELAX_IMMED_STEP2: | |
b81bf389 | 8678 | case RELAX_IMMED_STEP3: |
43cd72b9 BW |
8679 | /* Place the immediate. */ |
8680 | new_stretch += relax_frag_immed | |
8681 | (now_seg, fragP, stretch, | |
8682 | fragP->tc_frag_data.slot_subtypes[slot] - RELAX_IMMED, | |
8683 | fmt, slot, stretched_p, FALSE); | |
8684 | break; | |
8685 | ||
8686 | default: | |
8687 | /* This is OK; see the note in xg_assemble_vliw_tokens. */ | |
8688 | break; | |
8689 | } | |
8690 | } | |
e0001a05 NC |
8691 | break; |
8692 | ||
8693 | case RELAX_LITERAL_POOL_BEGIN: | |
8694 | case RELAX_LITERAL_POOL_END: | |
43cd72b9 BW |
8695 | case RELAX_MAYBE_UNREACHABLE: |
8696 | case RELAX_MAYBE_DESIRE_ALIGN: | |
e0001a05 NC |
8697 | /* No relaxation required. */ |
8698 | break; | |
8699 | ||
43cd72b9 BW |
8700 | case RELAX_FILL_NOP: |
8701 | case RELAX_UNREACHABLE: | |
8702 | if (fragP->tc_frag_data.relax_seen) | |
8703 | new_stretch += relax_frag_for_align (fragP, stretch); | |
8704 | break; | |
8705 | ||
e0001a05 NC |
8706 | default: |
8707 | as_bad (_("bad relaxation state")); | |
8708 | } | |
8709 | ||
43cd72b9 | 8710 | /* Tell gas we need another relaxation pass. */ |
c138bc38 | 8711 | if (! fragP->tc_frag_data.relax_seen) |
43cd72b9 BW |
8712 | { |
8713 | fragP->tc_frag_data.relax_seen = TRUE; | |
8714 | *stretched_p = 1; | |
8715 | } | |
8716 | ||
e0001a05 NC |
8717 | new_logical_line (file_name, line); |
8718 | return new_stretch; | |
8719 | } | |
8720 | ||
8721 | ||
8722 | static long | |
7fa3d080 | 8723 | relax_frag_loop_align (fragS *fragP, long stretch) |
e0001a05 NC |
8724 | { |
8725 | addressT old_address, old_next_address, old_size; | |
8726 | addressT new_address, new_next_address, new_size; | |
8727 | addressT growth; | |
8728 | ||
43cd72b9 BW |
8729 | /* All the frags with relax_frag_for_alignment prior to this one in the |
8730 | section have been done, hopefully eliminating the need for a NOP here. | |
8731 | But, this will put it in if necessary. */ | |
e0001a05 NC |
8732 | |
8733 | /* Calculate the old address of this fragment and the next fragment. */ | |
8734 | old_address = fragP->fr_address - stretch; | |
8735 | old_next_address = (fragP->fr_address - stretch + fragP->fr_fix + | |
43cd72b9 | 8736 | fragP->tc_frag_data.text_expansion[0]); |
e0001a05 NC |
8737 | old_size = old_next_address - old_address; |
8738 | ||
8739 | /* Calculate the new address of this fragment and the next fragment. */ | |
8740 | new_address = fragP->fr_address; | |
8741 | new_next_address = | |
8742 | get_noop_aligned_address (fragP, fragP->fr_address + fragP->fr_fix); | |
8743 | new_size = new_next_address - new_address; | |
8744 | ||
8745 | growth = new_size - old_size; | |
8746 | ||
8747 | /* Fix up the text_expansion field and return the new growth. */ | |
43cd72b9 | 8748 | fragP->tc_frag_data.text_expansion[0] += growth; |
e0001a05 NC |
8749 | return growth; |
8750 | } | |
8751 | ||
8752 | ||
43cd72b9 | 8753 | /* Add a NOP instruction. */ |
e0001a05 NC |
8754 | |
8755 | static long | |
7fa3d080 | 8756 | relax_frag_add_nop (fragS *fragP) |
e0001a05 | 8757 | { |
e0001a05 | 8758 | char *nop_buf = fragP->fr_literal + fragP->fr_fix; |
43cd72b9 BW |
8759 | int length = fragP->tc_frag_data.is_no_density ? 3 : 2; |
8760 | assemble_nop (length, nop_buf); | |
e0001a05 | 8761 | fragP->tc_frag_data.is_insn = TRUE; |
e0001a05 | 8762 | |
e0001a05 NC |
8763 | if (fragP->fr_var < length) |
8764 | { | |
dd49a749 | 8765 | as_fatal (_("fr_var (%ld) < length (%d)"), (long) fragP->fr_var, length); |
e0001a05 NC |
8766 | return 0; |
8767 | } | |
8768 | ||
8769 | fragP->fr_fix += length; | |
8770 | fragP->fr_var -= length; | |
e0001a05 NC |
8771 | return length; |
8772 | } | |
8773 | ||
8774 | ||
7fa3d080 BW |
8775 | static long future_alignment_required (fragS *, long); |
8776 | ||
e0001a05 | 8777 | static long |
7fa3d080 | 8778 | relax_frag_for_align (fragS *fragP, long stretch) |
e0001a05 | 8779 | { |
43cd72b9 BW |
8780 | /* Overview of the relaxation procedure for alignment: |
8781 | We can widen with NOPs or by widening instructions or by filling | |
8782 | bytes after jump instructions. Find the opportune places and widen | |
8783 | them if necessary. */ | |
8784 | ||
8785 | long stretch_me; | |
8786 | long diff; | |
e0001a05 | 8787 | |
9c2799c2 | 8788 | gas_assert (fragP->fr_subtype == RELAX_FILL_NOP |
43cd72b9 BW |
8789 | || fragP->fr_subtype == RELAX_UNREACHABLE |
8790 | || (fragP->fr_subtype == RELAX_SLOTS | |
8791 | && fragP->tc_frag_data.slot_subtypes[0] == RELAX_NARROW)); | |
8792 | ||
8793 | stretch_me = future_alignment_required (fragP, stretch); | |
8794 | diff = stretch_me - fragP->tc_frag_data.text_expansion[0]; | |
8795 | if (diff == 0) | |
8796 | return 0; | |
e0001a05 | 8797 | |
43cd72b9 | 8798 | if (diff < 0) |
e0001a05 | 8799 | { |
43cd72b9 BW |
8800 | /* We expanded on a previous pass. Can we shrink now? */ |
8801 | long shrink = fragP->tc_frag_data.text_expansion[0] - stretch_me; | |
8802 | if (shrink <= stretch && stretch > 0) | |
e0001a05 | 8803 | { |
43cd72b9 BW |
8804 | fragP->tc_frag_data.text_expansion[0] = stretch_me; |
8805 | return -shrink; | |
e0001a05 NC |
8806 | } |
8807 | return 0; | |
8808 | } | |
8809 | ||
43cd72b9 BW |
8810 | /* Below here, diff > 0. */ |
8811 | fragP->tc_frag_data.text_expansion[0] = stretch_me; | |
e0001a05 | 8812 | |
43cd72b9 | 8813 | return diff; |
e0001a05 NC |
8814 | } |
8815 | ||
8816 | ||
43cd72b9 BW |
8817 | /* Return the address of the next frag that should be aligned. |
8818 | ||
8819 | By "address" we mean the address it _would_ be at if there | |
8820 | is no action taken to align it between here and the target frag. | |
8821 | In other words, if no narrows and no fill nops are used between | |
8822 | here and the frag to align, _even_if_ some of the frags we use | |
8823 | to align targets have already expanded on a previous relaxation | |
8824 | pass. | |
8825 | ||
8826 | Also, count each frag that may be used to help align the target. | |
8827 | ||
8828 | Return 0 if there are no frags left in the chain that need to be | |
8829 | aligned. */ | |
8830 | ||
8831 | static addressT | |
7fa3d080 BW |
8832 | find_address_of_next_align_frag (fragS **fragPP, |
8833 | int *wide_nops, | |
8834 | int *narrow_nops, | |
8835 | int *widens, | |
8836 | bfd_boolean *paddable) | |
e0001a05 | 8837 | { |
43cd72b9 BW |
8838 | fragS *fragP = *fragPP; |
8839 | addressT address = fragP->fr_address; | |
8840 | ||
8841 | /* Do not reset the counts to 0. */ | |
e0001a05 NC |
8842 | |
8843 | while (fragP) | |
8844 | { | |
8845 | /* Limit this to a small search. */ | |
b5e4a23d | 8846 | if (*widens >= (int) xtensa_fetch_width) |
43cd72b9 BW |
8847 | { |
8848 | *fragPP = fragP; | |
8849 | return 0; | |
8850 | } | |
e0001a05 NC |
8851 | address += fragP->fr_fix; |
8852 | ||
43cd72b9 BW |
8853 | if (fragP->fr_type == rs_fill) |
8854 | address += fragP->fr_offset * fragP->fr_var; | |
8855 | else if (fragP->fr_type == rs_machine_dependent) | |
e0001a05 | 8856 | { |
e0001a05 NC |
8857 | switch (fragP->fr_subtype) |
8858 | { | |
43cd72b9 BW |
8859 | case RELAX_UNREACHABLE: |
8860 | *paddable = TRUE; | |
8861 | break; | |
8862 | ||
8863 | case RELAX_FILL_NOP: | |
8864 | (*wide_nops)++; | |
8865 | if (!fragP->tc_frag_data.is_no_density) | |
8866 | (*narrow_nops)++; | |
8867 | break; | |
8868 | ||
8869 | case RELAX_SLOTS: | |
8870 | if (fragP->tc_frag_data.slot_subtypes[0] == RELAX_NARROW) | |
8871 | { | |
8872 | (*widens)++; | |
8873 | break; | |
8874 | } | |
34e41783 | 8875 | address += total_frag_text_expansion (fragP);; |
e0001a05 NC |
8876 | break; |
8877 | ||
8878 | case RELAX_IMMED: | |
43cd72b9 | 8879 | address += fragP->tc_frag_data.text_expansion[0]; |
e0001a05 NC |
8880 | break; |
8881 | ||
8882 | case RELAX_ALIGN_NEXT_OPCODE: | |
8883 | case RELAX_DESIRE_ALIGN: | |
43cd72b9 BW |
8884 | *fragPP = fragP; |
8885 | return address; | |
8886 | ||
8887 | case RELAX_MAYBE_UNREACHABLE: | |
8888 | case RELAX_MAYBE_DESIRE_ALIGN: | |
8889 | /* Do nothing. */ | |
e0001a05 NC |
8890 | break; |
8891 | ||
8892 | default: | |
43cd72b9 BW |
8893 | /* Just punt if we don't know the type. */ |
8894 | *fragPP = fragP; | |
8895 | return 0; | |
e0001a05 | 8896 | } |
43cd72b9 | 8897 | } |
c138bc38 | 8898 | else |
43cd72b9 BW |
8899 | { |
8900 | /* Just punt if we don't know the type. */ | |
8901 | *fragPP = fragP; | |
8902 | return 0; | |
8903 | } | |
8904 | fragP = fragP->fr_next; | |
8905 | } | |
8906 | ||
8907 | *fragPP = fragP; | |
8908 | return 0; | |
8909 | } | |
8910 | ||
8911 | ||
7fa3d080 BW |
8912 | static long bytes_to_stretch (fragS *, int, int, int, int); |
8913 | ||
43cd72b9 | 8914 | static long |
7fa3d080 | 8915 | future_alignment_required (fragS *fragP, long stretch ATTRIBUTE_UNUSED) |
43cd72b9 BW |
8916 | { |
8917 | fragS *this_frag = fragP; | |
8918 | long address; | |
8919 | int num_widens = 0; | |
8920 | int wide_nops = 0; | |
8921 | int narrow_nops = 0; | |
8922 | bfd_boolean paddable = FALSE; | |
8923 | offsetT local_opt_diff; | |
8924 | offsetT opt_diff; | |
8925 | offsetT max_diff; | |
8926 | int stretch_amount = 0; | |
8927 | int local_stretch_amount; | |
8928 | int global_stretch_amount; | |
8929 | ||
7fa3d080 BW |
8930 | address = find_address_of_next_align_frag |
8931 | (&fragP, &wide_nops, &narrow_nops, &num_widens, &paddable); | |
43cd72b9 | 8932 | |
b5e4a23d BW |
8933 | if (!address) |
8934 | { | |
8935 | if (this_frag->tc_frag_data.is_aligning_branch) | |
8936 | this_frag->tc_frag_data.slot_subtypes[0] = RELAX_IMMED; | |
8937 | else | |
8938 | frag_wane (this_frag); | |
8939 | } | |
8940 | else | |
43cd72b9 BW |
8941 | { |
8942 | local_opt_diff = get_aligned_diff (fragP, address, &max_diff); | |
8943 | opt_diff = local_opt_diff; | |
9c2799c2 NC |
8944 | gas_assert (opt_diff >= 0); |
8945 | gas_assert (max_diff >= opt_diff); | |
c138bc38 | 8946 | if (max_diff == 0) |
43cd72b9 | 8947 | return 0; |
d2a033cd | 8948 | |
43cd72b9 BW |
8949 | if (fragP) |
8950 | fragP = fragP->fr_next; | |
8951 | ||
8952 | while (fragP && opt_diff < max_diff && address) | |
8953 | { | |
8954 | /* We only use these to determine if we can exit early | |
c138bc38 | 8955 | because there will be plenty of ways to align future |
43cd72b9 | 8956 | align frags. */ |
d77b99c9 | 8957 | int glob_widens = 0; |
43cd72b9 BW |
8958 | int dnn = 0; |
8959 | int dw = 0; | |
8960 | bfd_boolean glob_pad = 0; | |
7fa3d080 BW |
8961 | address = find_address_of_next_align_frag |
8962 | (&fragP, &glob_widens, &dnn, &dw, &glob_pad); | |
43cd72b9 | 8963 | /* If there is a padable portion, then skip. */ |
664df4e4 | 8964 | if (glob_pad || glob_widens >= (1 << branch_align_power (now_seg))) |
b5e4a23d | 8965 | address = 0; |
43cd72b9 | 8966 | |
c138bc38 | 8967 | if (address) |
43cd72b9 BW |
8968 | { |
8969 | offsetT next_m_diff; | |
8970 | offsetT next_o_diff; | |
8971 | ||
8972 | /* Downrange frags haven't had stretch added to them yet. */ | |
8973 | address += stretch; | |
8974 | ||
8975 | /* The address also includes any text expansion from this | |
8976 | frag in a previous pass, but we don't want that. */ | |
8977 | address -= this_frag->tc_frag_data.text_expansion[0]; | |
8978 | ||
8979 | /* Assume we are going to move at least opt_diff. In | |
8980 | reality, we might not be able to, but assuming that | |
8981 | we will helps catch cases where moving opt_diff pushes | |
8982 | the next target from aligned to unaligned. */ | |
8983 | address += opt_diff; | |
8984 | ||
8985 | next_o_diff = get_aligned_diff (fragP, address, &next_m_diff); | |
8986 | ||
8987 | /* Now cleanup for the adjustments to address. */ | |
8988 | next_o_diff += opt_diff; | |
8989 | next_m_diff += opt_diff; | |
8990 | if (next_o_diff <= max_diff && next_o_diff > opt_diff) | |
8991 | opt_diff = next_o_diff; | |
8992 | if (next_m_diff < max_diff) | |
8993 | max_diff = next_m_diff; | |
8994 | fragP = fragP->fr_next; | |
8995 | } | |
8996 | } | |
d2a033cd | 8997 | |
43cd72b9 BW |
8998 | /* If there are enough wideners in between, do it. */ |
8999 | if (paddable) | |
9000 | { | |
9001 | if (this_frag->fr_subtype == RELAX_UNREACHABLE) | |
9002 | { | |
1beeb686 | 9003 | gas_assert (opt_diff <= (signed) xtensa_fetch_width); |
43cd72b9 BW |
9004 | return opt_diff; |
9005 | } | |
9006 | return 0; | |
9007 | } | |
c138bc38 | 9008 | local_stretch_amount |
43cd72b9 BW |
9009 | = bytes_to_stretch (this_frag, wide_nops, narrow_nops, |
9010 | num_widens, local_opt_diff); | |
c138bc38 BW |
9011 | global_stretch_amount |
9012 | = bytes_to_stretch (this_frag, wide_nops, narrow_nops, | |
43cd72b9 | 9013 | num_widens, opt_diff); |
c138bc38 BW |
9014 | /* If the condition below is true, then the frag couldn't |
9015 | stretch the correct amount for the global case, so we just | |
9016 | optimize locally. We'll rely on the subsequent frags to get | |
43cd72b9 BW |
9017 | the correct alignment in the global case. */ |
9018 | if (global_stretch_amount < local_stretch_amount) | |
9019 | stretch_amount = local_stretch_amount; | |
9020 | else | |
9021 | stretch_amount = global_stretch_amount; | |
d2a033cd | 9022 | |
43cd72b9 BW |
9023 | if (this_frag->fr_subtype == RELAX_SLOTS |
9024 | && this_frag->tc_frag_data.slot_subtypes[0] == RELAX_NARROW) | |
9c2799c2 | 9025 | gas_assert (stretch_amount <= 1); |
43cd72b9 BW |
9026 | else if (this_frag->fr_subtype == RELAX_FILL_NOP) |
9027 | { | |
9028 | if (this_frag->tc_frag_data.is_no_density) | |
9c2799c2 | 9029 | gas_assert (stretch_amount == 3 || stretch_amount == 0); |
43cd72b9 | 9030 | else |
9c2799c2 | 9031 | gas_assert (stretch_amount <= 3); |
43cd72b9 BW |
9032 | } |
9033 | } | |
9034 | return stretch_amount; | |
9035 | } | |
9036 | ||
9037 | ||
9038 | /* The idea: widen everything you can to get a target or loop aligned, | |
9039 | then start using NOPs. | |
9040 | ||
43cd72b9 BW |
9041 | wide_nops = the number of wide NOPs available for aligning |
9042 | narrow_nops = the number of narrow NOPs available for aligning | |
9043 | (a subset of wide_nops) | |
9044 | widens = the number of narrow instructions that should be widened | |
9045 | ||
43cd72b9 BW |
9046 | */ |
9047 | ||
9048 | static long | |
7fa3d080 BW |
9049 | bytes_to_stretch (fragS *this_frag, |
9050 | int wide_nops, | |
9051 | int narrow_nops, | |
9052 | int num_widens, | |
9053 | int desired_diff) | |
43cd72b9 | 9054 | { |
19ef5f3d SA |
9055 | int nops_needed; |
9056 | int nop_bytes; | |
9057 | int extra_bytes; | |
43cd72b9 BW |
9058 | int bytes_short = desired_diff - num_widens; |
9059 | ||
1beeb686 SA |
9060 | gas_assert (desired_diff >= 0 |
9061 | && desired_diff < (signed) xtensa_fetch_width); | |
43cd72b9 BW |
9062 | if (desired_diff == 0) |
9063 | return 0; | |
c138bc38 | 9064 | |
9c2799c2 | 9065 | gas_assert (wide_nops > 0 || num_widens > 0); |
e0001a05 | 9066 | |
43cd72b9 BW |
9067 | /* Always prefer widening to NOP-filling. */ |
9068 | if (bytes_short < 0) | |
9069 | { | |
9070 | /* There are enough RELAX_NARROW frags after this one | |
9071 | to align the target without widening this frag in any way. */ | |
9072 | return 0; | |
9073 | } | |
c138bc38 | 9074 | |
43cd72b9 BW |
9075 | if (bytes_short == 0) |
9076 | { | |
9077 | /* Widen every narrow between here and the align target | |
9078 | and the align target will be properly aligned. */ | |
9079 | if (this_frag->fr_subtype == RELAX_FILL_NOP) | |
9080 | return 0; | |
9081 | else | |
9082 | return 1; | |
9083 | } | |
c138bc38 | 9084 | |
43cd72b9 BW |
9085 | /* From here we will need at least one NOP to get an alignment. |
9086 | However, we may not be able to align at all, in which case, | |
9087 | don't widen. */ | |
19ef5f3d SA |
9088 | nops_needed = desired_diff / 3; |
9089 | ||
9090 | /* If there aren't enough nops, don't widen. */ | |
9091 | if (nops_needed > wide_nops) | |
9092 | return 0; | |
9093 | ||
9094 | /* First try it with all wide nops. */ | |
9095 | nop_bytes = nops_needed * 3; | |
9096 | extra_bytes = desired_diff - nop_bytes; | |
9097 | ||
9098 | if (nop_bytes + num_widens >= desired_diff) | |
43cd72b9 | 9099 | { |
19ef5f3d SA |
9100 | if (this_frag->fr_subtype == RELAX_FILL_NOP) |
9101 | return 3; | |
9102 | else if (num_widens == extra_bytes) | |
9103 | return 1; | |
9104 | return 0; | |
e0001a05 | 9105 | } |
19ef5f3d SA |
9106 | |
9107 | /* Add a narrow nop. */ | |
9108 | nops_needed++; | |
9109 | nop_bytes += 2; | |
9110 | extra_bytes -= 2; | |
9111 | if (narrow_nops == 0 || nops_needed > wide_nops) | |
9112 | return 0; | |
9113 | ||
9114 | if (nop_bytes + num_widens >= desired_diff && extra_bytes >= 0) | |
43cd72b9 | 9115 | { |
19ef5f3d SA |
9116 | if (this_frag->fr_subtype == RELAX_FILL_NOP) |
9117 | return !this_frag->tc_frag_data.is_no_density ? 2 : 3; | |
9118 | else if (num_widens == extra_bytes) | |
9119 | return 1; | |
9120 | return 0; | |
9121 | } | |
e0001a05 | 9122 | |
19ef5f3d SA |
9123 | /* Replace a wide nop with a narrow nop--we can get here if |
9124 | extra_bytes was negative in the previous conditional. */ | |
9125 | if (narrow_nops == 1) | |
9126 | return 0; | |
9127 | nop_bytes--; | |
9128 | extra_bytes++; | |
9129 | if (nop_bytes + num_widens >= desired_diff) | |
9130 | { | |
9131 | if (this_frag->fr_subtype == RELAX_FILL_NOP) | |
9132 | return !this_frag->tc_frag_data.is_no_density ? 2 : 3; | |
9133 | else if (num_widens == extra_bytes) | |
9134 | return 1; | |
9135 | return 0; | |
43cd72b9 | 9136 | } |
19ef5f3d SA |
9137 | |
9138 | /* If we can't satisfy any of the above cases, then we can't align | |
9139 | using padding or fill nops. */ | |
43cd72b9 | 9140 | return 0; |
e0001a05 NC |
9141 | } |
9142 | ||
9143 | ||
9144 | static long | |
7fa3d080 BW |
9145 | relax_frag_immed (segT segP, |
9146 | fragS *fragP, | |
9147 | long stretch, | |
9148 | int min_steps, | |
9149 | xtensa_format fmt, | |
9150 | int slot, | |
9151 | int *stretched_p, | |
9152 | bfd_boolean estimate_only) | |
e0001a05 | 9153 | { |
43cd72b9 | 9154 | TInsn tinsn; |
e0001a05 NC |
9155 | int old_size; |
9156 | bfd_boolean negatable_branch = FALSE; | |
9157 | bfd_boolean branch_jmp_to_next = FALSE; | |
def13efb | 9158 | bfd_boolean from_wide_insn = FALSE; |
43cd72b9 | 9159 | xtensa_isa isa = xtensa_default_isa; |
e0001a05 NC |
9160 | IStack istack; |
9161 | offsetT frag_offset; | |
9162 | int num_steps; | |
e0001a05 | 9163 | int num_text_bytes, num_literal_bytes; |
2276bc20 | 9164 | int literal_diff, total_text_diff, this_text_diff; |
e0001a05 | 9165 | |
9c2799c2 | 9166 | gas_assert (fragP->fr_opcode != NULL); |
e0001a05 | 9167 | |
b5e4a23d BW |
9168 | xg_clear_vinsn (&cur_vinsn); |
9169 | vinsn_from_chars (&cur_vinsn, fragP->fr_opcode); | |
b2d179be | 9170 | if (cur_vinsn.num_slots > 1) |
def13efb | 9171 | from_wide_insn = TRUE; |
43cd72b9 | 9172 | |
b5e4a23d | 9173 | tinsn = cur_vinsn.slots[slot]; |
43cd72b9 | 9174 | tinsn_immed_from_frag (&tinsn, fragP, slot); |
e0001a05 | 9175 | |
64b607e6 | 9176 | if (estimate_only && xtensa_opcode_is_loop (isa, tinsn.opcode) == 1) |
43cd72b9 | 9177 | return 0; |
e0001a05 | 9178 | |
b08b5071 | 9179 | if (workaround_b_j_loop_end && ! fragP->tc_frag_data.is_no_transform) |
43cd72b9 | 9180 | branch_jmp_to_next = is_branch_jmp_to_next (&tinsn, fragP); |
e0001a05 | 9181 | |
43cd72b9 | 9182 | negatable_branch = (xtensa_opcode_is_branch (isa, tinsn.opcode) == 1); |
e0001a05 | 9183 | |
43cd72b9 | 9184 | old_size = xtensa_format_length (isa, fmt); |
e0001a05 NC |
9185 | |
9186 | /* Special case: replace a branch to the next instruction with a NOP. | |
9187 | This is required to work around a hardware bug in T1040.0 and also | |
9188 | serves as an optimization. */ | |
9189 | ||
9190 | if (branch_jmp_to_next | |
9191 | && ((old_size == 2) || (old_size == 3)) | |
9192 | && !next_frag_is_loop_target (fragP)) | |
9193 | return 0; | |
9194 | ||
9195 | /* Here is the fun stuff: Get the immediate field from this | |
9196 | instruction. If it fits, we are done. If not, find the next | |
9197 | instruction sequence that fits. */ | |
9198 | ||
9199 | frag_offset = fragP->fr_opcode - fragP->fr_literal; | |
9200 | istack_init (&istack); | |
43cd72b9 | 9201 | num_steps = xg_assembly_relax (&istack, &tinsn, segP, fragP, frag_offset, |
e0001a05 | 9202 | min_steps, stretch); |
9c2799c2 | 9203 | gas_assert (num_steps >= min_steps && num_steps <= RELAX_IMMED_MAXSTEPS); |
e0001a05 | 9204 | |
43cd72b9 | 9205 | fragP->tc_frag_data.slot_subtypes[slot] = (int) RELAX_IMMED + num_steps; |
e0001a05 NC |
9206 | |
9207 | /* Figure out the number of bytes needed. */ | |
e0001a05 | 9208 | num_literal_bytes = get_num_stack_literal_bytes (&istack); |
2276bc20 BW |
9209 | literal_diff |
9210 | = num_literal_bytes - fragP->tc_frag_data.literal_expansion[slot]; | |
43cd72b9 | 9211 | num_text_bytes = get_num_stack_text_bytes (&istack); |
def13efb BW |
9212 | |
9213 | if (from_wide_insn) | |
43cd72b9 | 9214 | { |
2276bc20 BW |
9215 | int first = 0; |
9216 | while (istack.insn[first].opcode == XTENSA_UNDEFINED) | |
9217 | first++; | |
9218 | ||
43cd72b9 BW |
9219 | num_text_bytes += old_size; |
9220 | if (opcode_fits_format_slot (istack.insn[first].opcode, fmt, slot)) | |
9221 | num_text_bytes -= xg_get_single_size (istack.insn[first].opcode); | |
2276bc20 BW |
9222 | else |
9223 | { | |
9224 | /* The first instruction in the relaxed sequence will go after | |
9225 | the current wide instruction, and thus its symbolic immediates | |
9226 | might not fit. */ | |
9227 | ||
9228 | istack_init (&istack); | |
9229 | num_steps = xg_assembly_relax (&istack, &tinsn, segP, fragP, | |
9230 | frag_offset + old_size, | |
9231 | min_steps, stretch + old_size); | |
9c2799c2 | 9232 | gas_assert (num_steps >= min_steps && num_steps <= RELAX_IMMED_MAXSTEPS); |
2276bc20 BW |
9233 | |
9234 | fragP->tc_frag_data.slot_subtypes[slot] | |
9235 | = (int) RELAX_IMMED + num_steps; | |
9236 | ||
9237 | num_literal_bytes = get_num_stack_literal_bytes (&istack); | |
9238 | literal_diff | |
9239 | = num_literal_bytes - fragP->tc_frag_data.literal_expansion[slot]; | |
9240 | ||
9241 | num_text_bytes = get_num_stack_text_bytes (&istack) + old_size; | |
9242 | } | |
43cd72b9 | 9243 | } |
def13efb | 9244 | |
43cd72b9 BW |
9245 | total_text_diff = num_text_bytes - old_size; |
9246 | this_text_diff = total_text_diff - fragP->tc_frag_data.text_expansion[slot]; | |
e0001a05 NC |
9247 | |
9248 | /* It MUST get larger. If not, we could get an infinite loop. */ | |
9c2799c2 NC |
9249 | gas_assert (num_text_bytes >= 0); |
9250 | gas_assert (literal_diff >= 0); | |
9251 | gas_assert (total_text_diff >= 0); | |
e0001a05 | 9252 | |
43cd72b9 BW |
9253 | fragP->tc_frag_data.text_expansion[slot] = total_text_diff; |
9254 | fragP->tc_frag_data.literal_expansion[slot] = num_literal_bytes; | |
9c2799c2 NC |
9255 | gas_assert (fragP->tc_frag_data.text_expansion[slot] >= 0); |
9256 | gas_assert (fragP->tc_frag_data.literal_expansion[slot] >= 0); | |
e0001a05 NC |
9257 | |
9258 | /* Find the associated expandable literal for this. */ | |
9259 | if (literal_diff != 0) | |
9260 | { | |
2276bc20 | 9261 | fragS *lit_fragP = fragP->tc_frag_data.literal_frags[slot]; |
e0001a05 NC |
9262 | if (lit_fragP) |
9263 | { | |
9c2799c2 | 9264 | gas_assert (literal_diff == 4); |
e0001a05 NC |
9265 | lit_fragP->tc_frag_data.unreported_expansion += literal_diff; |
9266 | ||
9267 | /* We expect that the literal section state has NOT been | |
9268 | modified yet. */ | |
9c2799c2 | 9269 | gas_assert (lit_fragP->fr_type == rs_machine_dependent |
e0001a05 NC |
9270 | && lit_fragP->fr_subtype == RELAX_LITERAL); |
9271 | lit_fragP->fr_subtype = RELAX_LITERAL_NR; | |
9272 | ||
9273 | /* We need to mark this section for another iteration | |
9274 | of relaxation. */ | |
9275 | (*stretched_p)++; | |
9276 | } | |
9277 | } | |
9278 | ||
43cd72b9 | 9279 | if (negatable_branch && istack.ninsn > 1) |
1d19a770 | 9280 | update_next_frag_state (fragP); |
e0001a05 | 9281 | |
43cd72b9 | 9282 | return this_text_diff; |
e0001a05 NC |
9283 | } |
9284 | ||
9285 | \f | |
9286 | /* md_convert_frag Hook and Helper Functions. */ | |
9287 | ||
7fa3d080 BW |
9288 | static void convert_frag_align_next_opcode (fragS *); |
9289 | static void convert_frag_narrow (segT, fragS *, xtensa_format, int); | |
9290 | static void convert_frag_fill_nop (fragS *); | |
9291 | static void convert_frag_immed (segT, fragS *, int, xtensa_format, int); | |
9292 | ||
e0001a05 | 9293 | void |
7fa3d080 | 9294 | md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT sec, fragS *fragp) |
e0001a05 | 9295 | { |
43cd72b9 BW |
9296 | static xtensa_insnbuf vbuf = NULL; |
9297 | xtensa_isa isa = xtensa_default_isa; | |
9298 | int slot; | |
9299 | int num_slots; | |
9300 | xtensa_format fmt; | |
e0001a05 | 9301 | char *file_name; |
d77b99c9 | 9302 | unsigned line; |
e0001a05 NC |
9303 | |
9304 | as_where (&file_name, &line); | |
9305 | new_logical_line (fragp->fr_file, fragp->fr_line); | |
9306 | ||
9307 | switch (fragp->fr_subtype) | |
9308 | { | |
9309 | case RELAX_ALIGN_NEXT_OPCODE: | |
9310 | /* Always convert. */ | |
9311 | convert_frag_align_next_opcode (fragp); | |
9312 | break; | |
9313 | ||
9314 | case RELAX_DESIRE_ALIGN: | |
9315 | /* Do nothing. If not aligned already, too bad. */ | |
9316 | break; | |
9317 | ||
43cd72b9 BW |
9318 | case RELAX_LITERAL: |
9319 | case RELAX_LITERAL_FINAL: | |
9320 | break; | |
9321 | ||
9322 | case RELAX_SLOTS: | |
9323 | if (vbuf == NULL) | |
9324 | vbuf = xtensa_insnbuf_alloc (isa); | |
9325 | ||
d77b99c9 BW |
9326 | xtensa_insnbuf_from_chars |
9327 | (isa, vbuf, (unsigned char *) fragp->fr_opcode, 0); | |
43cd72b9 BW |
9328 | fmt = xtensa_format_decode (isa, vbuf); |
9329 | num_slots = xtensa_format_num_slots (isa, fmt); | |
9330 | ||
9331 | for (slot = 0; slot < num_slots; slot++) | |
9332 | { | |
9333 | switch (fragp->tc_frag_data.slot_subtypes[slot]) | |
9334 | { | |
9335 | case RELAX_NARROW: | |
9336 | convert_frag_narrow (sec, fragp, fmt, slot); | |
9337 | break; | |
9338 | ||
9339 | case RELAX_IMMED: | |
9340 | case RELAX_IMMED_STEP1: | |
9341 | case RELAX_IMMED_STEP2: | |
b81bf389 | 9342 | case RELAX_IMMED_STEP3: |
43cd72b9 BW |
9343 | /* Place the immediate. */ |
9344 | convert_frag_immed | |
9345 | (sec, fragp, | |
9346 | fragp->tc_frag_data.slot_subtypes[slot] - RELAX_IMMED, | |
9347 | fmt, slot); | |
9348 | break; | |
9349 | ||
9350 | default: | |
9351 | /* This is OK because some slots could have | |
9352 | relaxations and others have none. */ | |
9353 | break; | |
9354 | } | |
9355 | } | |
9356 | break; | |
9357 | ||
9358 | case RELAX_UNREACHABLE: | |
9359 | memset (&fragp->fr_literal[fragp->fr_fix], 0, fragp->fr_var); | |
9360 | fragp->fr_fix += fragp->tc_frag_data.text_expansion[0]; | |
9361 | fragp->fr_var -= fragp->tc_frag_data.text_expansion[0]; | |
9362 | frag_wane (fragp); | |
e0001a05 NC |
9363 | break; |
9364 | ||
43cd72b9 BW |
9365 | case RELAX_MAYBE_UNREACHABLE: |
9366 | case RELAX_MAYBE_DESIRE_ALIGN: | |
9367 | frag_wane (fragp); | |
e0001a05 NC |
9368 | break; |
9369 | ||
43cd72b9 BW |
9370 | case RELAX_FILL_NOP: |
9371 | convert_frag_fill_nop (fragp); | |
e0001a05 NC |
9372 | break; |
9373 | ||
9374 | case RELAX_LITERAL_NR: | |
9375 | if (use_literal_section) | |
9376 | { | |
9377 | /* This should have been handled during relaxation. When | |
9378 | relaxing a code segment, literals sometimes need to be | |
9379 | added to the corresponding literal segment. If that | |
9380 | literal segment has already been relaxed, then we end up | |
9381 | in this situation. Marking the literal segments as data | |
9382 | would make this happen less often (since GAS always relaxes | |
9383 | code before data), but we could still get into trouble if | |
9384 | there are instructions in a segment that is not marked as | |
9385 | containing code. Until we can implement a better solution, | |
9386 | cheat and adjust the addresses of all the following frags. | |
9387 | This could break subsequent alignments, but the linker's | |
9388 | literal coalescing will do that anyway. */ | |
9389 | ||
9390 | fragS *f; | |
9391 | fragp->fr_subtype = RELAX_LITERAL_FINAL; | |
9c2799c2 | 9392 | gas_assert (fragp->tc_frag_data.unreported_expansion == 4); |
e0001a05 NC |
9393 | memset (&fragp->fr_literal[fragp->fr_fix], 0, 4); |
9394 | fragp->fr_var -= 4; | |
9395 | fragp->fr_fix += 4; | |
9396 | for (f = fragp->fr_next; f; f = f->fr_next) | |
9397 | f->fr_address += 4; | |
9398 | } | |
9399 | else | |
9400 | as_bad (_("invalid relaxation fragment result")); | |
9401 | break; | |
9402 | } | |
9403 | ||
9404 | fragp->fr_var = 0; | |
9405 | new_logical_line (file_name, line); | |
9406 | } | |
9407 | ||
9408 | ||
7fa3d080 BW |
9409 | static void |
9410 | convert_frag_align_next_opcode (fragS *fragp) | |
e0001a05 NC |
9411 | { |
9412 | char *nop_buf; /* Location for Writing. */ | |
e0001a05 NC |
9413 | bfd_boolean use_no_density = fragp->tc_frag_data.is_no_density; |
9414 | addressT aligned_address; | |
d77b99c9 BW |
9415 | offsetT fill_size; |
9416 | int nop, nop_count; | |
e0001a05 NC |
9417 | |
9418 | aligned_address = get_noop_aligned_address (fragp, fragp->fr_address + | |
9419 | fragp->fr_fix); | |
9420 | fill_size = aligned_address - (fragp->fr_address + fragp->fr_fix); | |
9421 | nop_count = get_text_align_nop_count (fill_size, use_no_density); | |
9422 | nop_buf = fragp->fr_literal + fragp->fr_fix; | |
9423 | ||
d77b99c9 | 9424 | for (nop = 0; nop < nop_count; nop++) |
e0001a05 | 9425 | { |
d77b99c9 BW |
9426 | int nop_size; |
9427 | nop_size = get_text_align_nth_nop_size (fill_size, nop, use_no_density); | |
e0001a05 NC |
9428 | |
9429 | assemble_nop (nop_size, nop_buf); | |
9430 | nop_buf += nop_size; | |
9431 | } | |
9432 | ||
9433 | fragp->fr_fix += fill_size; | |
9434 | fragp->fr_var -= fill_size; | |
9435 | } | |
9436 | ||
9437 | ||
9438 | static void | |
7fa3d080 | 9439 | convert_frag_narrow (segT segP, fragS *fragP, xtensa_format fmt, int slot) |
e0001a05 | 9440 | { |
43cd72b9 | 9441 | TInsn tinsn, single_target; |
84b08ed9 | 9442 | int size, old_size, diff; |
e0001a05 NC |
9443 | offsetT frag_offset; |
9444 | ||
9c2799c2 | 9445 | gas_assert (slot == 0); |
43cd72b9 BW |
9446 | tinsn_from_chars (&tinsn, fragP->fr_opcode, 0); |
9447 | ||
b5e4a23d | 9448 | if (fragP->tc_frag_data.is_aligning_branch == 1) |
43cd72b9 | 9449 | { |
9c2799c2 | 9450 | gas_assert (fragP->tc_frag_data.text_expansion[0] == 1 |
43cd72b9 BW |
9451 | || fragP->tc_frag_data.text_expansion[0] == 0); |
9452 | convert_frag_immed (segP, fragP, fragP->tc_frag_data.text_expansion[0], | |
9453 | fmt, slot); | |
9454 | return; | |
9455 | } | |
9456 | ||
9457 | if (fragP->tc_frag_data.text_expansion[0] == 0) | |
e0001a05 NC |
9458 | { |
9459 | /* No conversion. */ | |
9460 | fragP->fr_var = 0; | |
9461 | return; | |
9462 | } | |
9463 | ||
9c2799c2 | 9464 | gas_assert (fragP->fr_opcode != NULL); |
e0001a05 | 9465 | |
43cd72b9 BW |
9466 | /* Frags in this relaxation state should only contain |
9467 | single instruction bundles. */ | |
9468 | tinsn_immed_from_frag (&tinsn, fragP, 0); | |
e0001a05 NC |
9469 | |
9470 | /* Just convert it to a wide form.... */ | |
9471 | size = 0; | |
43cd72b9 | 9472 | old_size = xg_get_single_size (tinsn.opcode); |
e0001a05 NC |
9473 | |
9474 | tinsn_init (&single_target); | |
9475 | frag_offset = fragP->fr_opcode - fragP->fr_literal; | |
9476 | ||
84b08ed9 | 9477 | if (! xg_is_single_relaxable_insn (&tinsn, &single_target, FALSE)) |
43cd72b9 BW |
9478 | { |
9479 | as_bad (_("unable to widen instruction")); | |
9480 | return; | |
9481 | } | |
9482 | ||
9483 | size = xg_get_single_size (single_target.opcode); | |
b2d179be BW |
9484 | xg_emit_insn_to_buf (&single_target, fragP->fr_opcode, fragP, |
9485 | frag_offset, TRUE); | |
e0001a05 NC |
9486 | |
9487 | diff = size - old_size; | |
9c2799c2 NC |
9488 | gas_assert (diff >= 0); |
9489 | gas_assert (diff <= fragP->fr_var); | |
e0001a05 NC |
9490 | fragP->fr_var -= diff; |
9491 | fragP->fr_fix += diff; | |
9492 | ||
9493 | /* clean it up */ | |
9494 | fragP->fr_var = 0; | |
9495 | } | |
9496 | ||
9497 | ||
9498 | static void | |
7fa3d080 | 9499 | convert_frag_fill_nop (fragS *fragP) |
43cd72b9 BW |
9500 | { |
9501 | char *loc = &fragP->fr_literal[fragP->fr_fix]; | |
9502 | int size = fragP->tc_frag_data.text_expansion[0]; | |
9c2799c2 | 9503 | gas_assert ((unsigned) size == (fragP->fr_next->fr_address |
43cd72b9 BW |
9504 | - fragP->fr_address - fragP->fr_fix)); |
9505 | if (size == 0) | |
9506 | { | |
9507 | /* No conversion. */ | |
9508 | fragP->fr_var = 0; | |
9509 | return; | |
9510 | } | |
9511 | assemble_nop (size, loc); | |
9512 | fragP->tc_frag_data.is_insn = TRUE; | |
9513 | fragP->fr_var -= size; | |
9514 | fragP->fr_fix += size; | |
9515 | frag_wane (fragP); | |
9516 | } | |
9517 | ||
9518 | ||
7fa3d080 BW |
9519 | static fixS *fix_new_exp_in_seg |
9520 | (segT, subsegT, fragS *, int, int, expressionS *, int, | |
9521 | bfd_reloc_code_real_type); | |
9522 | static void convert_frag_immed_finish_loop (segT, fragS *, TInsn *); | |
9523 | ||
43cd72b9 | 9524 | static void |
7fa3d080 BW |
9525 | convert_frag_immed (segT segP, |
9526 | fragS *fragP, | |
9527 | int min_steps, | |
9528 | xtensa_format fmt, | |
9529 | int slot) | |
e0001a05 NC |
9530 | { |
9531 | char *immed_instr = fragP->fr_opcode; | |
43cd72b9 | 9532 | TInsn orig_tinsn; |
e0001a05 | 9533 | bfd_boolean expanded = FALSE; |
e0001a05 | 9534 | bfd_boolean branch_jmp_to_next = FALSE; |
43cd72b9 | 9535 | char *fr_opcode = fragP->fr_opcode; |
43cd72b9 | 9536 | xtensa_isa isa = xtensa_default_isa; |
def13efb | 9537 | bfd_boolean from_wide_insn = FALSE; |
43cd72b9 BW |
9538 | int bytes; |
9539 | bfd_boolean is_loop; | |
e0001a05 | 9540 | |
9c2799c2 | 9541 | gas_assert (fr_opcode != NULL); |
e0001a05 | 9542 | |
b5e4a23d | 9543 | xg_clear_vinsn (&cur_vinsn); |
e0001a05 | 9544 | |
b5e4a23d | 9545 | vinsn_from_chars (&cur_vinsn, fr_opcode); |
b2d179be | 9546 | if (cur_vinsn.num_slots > 1) |
def13efb | 9547 | from_wide_insn = TRUE; |
e0001a05 | 9548 | |
b5e4a23d | 9549 | orig_tinsn = cur_vinsn.slots[slot]; |
43cd72b9 BW |
9550 | tinsn_immed_from_frag (&orig_tinsn, fragP, slot); |
9551 | ||
9552 | is_loop = xtensa_opcode_is_loop (xtensa_default_isa, orig_tinsn.opcode) == 1; | |
e0001a05 | 9553 | |
b08b5071 | 9554 | if (workaround_b_j_loop_end && ! fragP->tc_frag_data.is_no_transform) |
43cd72b9 | 9555 | branch_jmp_to_next = is_branch_jmp_to_next (&orig_tinsn, fragP); |
e0001a05 NC |
9556 | |
9557 | if (branch_jmp_to_next && !next_frag_is_loop_target (fragP)) | |
9558 | { | |
9559 | /* Conversion just inserts a NOP and marks the fix as completed. */ | |
43cd72b9 BW |
9560 | bytes = xtensa_format_length (isa, fmt); |
9561 | if (bytes >= 4) | |
9562 | { | |
b5e4a23d BW |
9563 | cur_vinsn.slots[slot].opcode = |
9564 | xtensa_format_slot_nop_opcode (isa, cur_vinsn.format, slot); | |
9565 | cur_vinsn.slots[slot].ntok = 0; | |
43cd72b9 BW |
9566 | } |
9567 | else | |
9568 | { | |
9569 | bytes += fragP->tc_frag_data.text_expansion[0]; | |
9c2799c2 | 9570 | gas_assert (bytes == 2 || bytes == 3); |
b5e4a23d | 9571 | build_nop (&cur_vinsn.slots[0], bytes); |
43cd72b9 BW |
9572 | fragP->fr_fix += fragP->tc_frag_data.text_expansion[0]; |
9573 | } | |
e7da6241 | 9574 | vinsn_to_insnbuf (&cur_vinsn, fr_opcode, frag_now, TRUE); |
d77b99c9 | 9575 | xtensa_insnbuf_to_chars |
b5e4a23d | 9576 | (isa, cur_vinsn.insnbuf, (unsigned char *) fr_opcode, 0); |
e0001a05 NC |
9577 | fragP->fr_var = 0; |
9578 | } | |
7c834684 | 9579 | else |
e0001a05 | 9580 | { |
43cd72b9 BW |
9581 | /* Here is the fun stuff: Get the immediate field from this |
9582 | instruction. If it fits, we're done. If not, find the next | |
9583 | instruction sequence that fits. */ | |
9584 | ||
e0001a05 NC |
9585 | IStack istack; |
9586 | int i; | |
9587 | symbolS *lit_sym = NULL; | |
9588 | int total_size = 0; | |
43cd72b9 | 9589 | int target_offset = 0; |
e0001a05 NC |
9590 | int old_size; |
9591 | int diff; | |
9592 | symbolS *gen_label = NULL; | |
9593 | offsetT frag_offset; | |
43cd72b9 BW |
9594 | bfd_boolean first = TRUE; |
9595 | bfd_boolean last_is_jump; | |
e0001a05 | 9596 | |
43cd72b9 | 9597 | /* It does not fit. Find something that does and |
e0001a05 | 9598 | convert immediately. */ |
43cd72b9 | 9599 | frag_offset = fr_opcode - fragP->fr_literal; |
e0001a05 | 9600 | istack_init (&istack); |
43cd72b9 | 9601 | xg_assembly_relax (&istack, &orig_tinsn, |
e0001a05 NC |
9602 | segP, fragP, frag_offset, min_steps, 0); |
9603 | ||
43cd72b9 | 9604 | old_size = xtensa_format_length (isa, fmt); |
e0001a05 NC |
9605 | |
9606 | /* Assemble this right inline. */ | |
9607 | ||
9608 | /* First, create the mapping from a label name to the REAL label. */ | |
43cd72b9 | 9609 | target_offset = 0; |
e0001a05 NC |
9610 | for (i = 0; i < istack.ninsn; i++) |
9611 | { | |
43cd72b9 | 9612 | TInsn *tinsn = &istack.insn[i]; |
e0001a05 NC |
9613 | fragS *lit_frag; |
9614 | ||
43cd72b9 | 9615 | switch (tinsn->insn_type) |
e0001a05 NC |
9616 | { |
9617 | case ITYPE_LITERAL: | |
9618 | if (lit_sym != NULL) | |
9619 | as_bad (_("multiple literals in expansion")); | |
9620 | /* First find the appropriate space in the literal pool. */ | |
43cd72b9 | 9621 | lit_frag = fragP->tc_frag_data.literal_frags[slot]; |
e0001a05 NC |
9622 | if (lit_frag == NULL) |
9623 | as_bad (_("no registered fragment for literal")); | |
43cd72b9 | 9624 | if (tinsn->ntok != 1) |
e0001a05 NC |
9625 | as_bad (_("number of literal tokens != 1")); |
9626 | ||
9627 | /* Set the literal symbol and add a fixup. */ | |
9628 | lit_sym = lit_frag->fr_symbol; | |
9629 | break; | |
9630 | ||
9631 | case ITYPE_LABEL: | |
43cd72b9 BW |
9632 | if (align_targets && !is_loop) |
9633 | { | |
9634 | fragS *unreach = fragP->fr_next; | |
9635 | while (!(unreach->fr_type == rs_machine_dependent | |
9636 | && (unreach->fr_subtype == RELAX_MAYBE_UNREACHABLE | |
9637 | || unreach->fr_subtype == RELAX_UNREACHABLE))) | |
9638 | { | |
9639 | unreach = unreach->fr_next; | |
9640 | } | |
9641 | ||
9c2799c2 | 9642 | gas_assert (unreach->fr_type == rs_machine_dependent |
43cd72b9 BW |
9643 | && (unreach->fr_subtype == RELAX_MAYBE_UNREACHABLE |
9644 | || unreach->fr_subtype == RELAX_UNREACHABLE)); | |
9645 | ||
9646 | target_offset += unreach->tc_frag_data.text_expansion[0]; | |
9647 | } | |
9c2799c2 | 9648 | gas_assert (gen_label == NULL); |
e0001a05 | 9649 | gen_label = symbol_new (FAKE_LABEL_NAME, now_seg, |
43cd72b9 BW |
9650 | fr_opcode - fragP->fr_literal |
9651 | + target_offset, fragP); | |
e0001a05 NC |
9652 | break; |
9653 | ||
9654 | case ITYPE_INSN: | |
def13efb | 9655 | if (first && from_wide_insn) |
43cd72b9 BW |
9656 | { |
9657 | target_offset += xtensa_format_length (isa, fmt); | |
9658 | first = FALSE; | |
9659 | if (!opcode_fits_format_slot (tinsn->opcode, fmt, slot)) | |
9660 | target_offset += xg_get_single_size (tinsn->opcode); | |
9661 | } | |
9662 | else | |
9663 | target_offset += xg_get_single_size (tinsn->opcode); | |
e0001a05 NC |
9664 | break; |
9665 | } | |
9666 | } | |
9667 | ||
9668 | total_size = 0; | |
43cd72b9 BW |
9669 | first = TRUE; |
9670 | last_is_jump = FALSE; | |
e0001a05 NC |
9671 | for (i = 0; i < istack.ninsn; i++) |
9672 | { | |
43cd72b9 | 9673 | TInsn *tinsn = &istack.insn[i]; |
e0001a05 NC |
9674 | fragS *lit_frag; |
9675 | int size; | |
9676 | segT target_seg; | |
43cd72b9 | 9677 | bfd_reloc_code_real_type reloc_type; |
e0001a05 | 9678 | |
43cd72b9 | 9679 | switch (tinsn->insn_type) |
e0001a05 NC |
9680 | { |
9681 | case ITYPE_LITERAL: | |
43cd72b9 BW |
9682 | lit_frag = fragP->tc_frag_data.literal_frags[slot]; |
9683 | /* Already checked. */ | |
9c2799c2 NC |
9684 | gas_assert (lit_frag != NULL); |
9685 | gas_assert (lit_sym != NULL); | |
9686 | gas_assert (tinsn->ntok == 1); | |
43cd72b9 | 9687 | /* Add a fixup. */ |
e0001a05 | 9688 | target_seg = S_GET_SEGMENT (lit_sym); |
9c2799c2 | 9689 | gas_assert (target_seg); |
28dbbc02 | 9690 | reloc_type = map_operator_to_reloc (tinsn->tok[0].X_op, TRUE); |
e0001a05 | 9691 | fix_new_exp_in_seg (target_seg, 0, lit_frag, 0, 4, |
43cd72b9 | 9692 | &tinsn->tok[0], FALSE, reloc_type); |
e0001a05 NC |
9693 | break; |
9694 | ||
9695 | case ITYPE_LABEL: | |
9696 | break; | |
9697 | ||
9698 | case ITYPE_INSN: | |
43cd72b9 BW |
9699 | xg_resolve_labels (tinsn, gen_label); |
9700 | xg_resolve_literals (tinsn, lit_sym); | |
def13efb | 9701 | if (from_wide_insn && first) |
43cd72b9 BW |
9702 | { |
9703 | first = FALSE; | |
9704 | if (opcode_fits_format_slot (tinsn->opcode, fmt, slot)) | |
9705 | { | |
b5e4a23d | 9706 | cur_vinsn.slots[slot] = *tinsn; |
43cd72b9 BW |
9707 | } |
9708 | else | |
9709 | { | |
b5e4a23d | 9710 | cur_vinsn.slots[slot].opcode = |
43cd72b9 | 9711 | xtensa_format_slot_nop_opcode (isa, fmt, slot); |
b5e4a23d | 9712 | cur_vinsn.slots[slot].ntok = 0; |
43cd72b9 | 9713 | } |
b5e4a23d BW |
9714 | vinsn_to_insnbuf (&cur_vinsn, immed_instr, fragP, TRUE); |
9715 | xtensa_insnbuf_to_chars (isa, cur_vinsn.insnbuf, | |
d77b99c9 | 9716 | (unsigned char *) immed_instr, 0); |
43cd72b9 BW |
9717 | fragP->tc_frag_data.is_insn = TRUE; |
9718 | size = xtensa_format_length (isa, fmt); | |
9719 | if (!opcode_fits_format_slot (tinsn->opcode, fmt, slot)) | |
9720 | { | |
43cd72b9 | 9721 | xg_emit_insn_to_buf |
b2d179be | 9722 | (tinsn, immed_instr + size, fragP, |
43cd72b9 BW |
9723 | immed_instr - fragP->fr_literal + size, TRUE); |
9724 | size += xg_get_single_size (tinsn->opcode); | |
9725 | } | |
9726 | } | |
9727 | else | |
9728 | { | |
43cd72b9 | 9729 | size = xg_get_single_size (tinsn->opcode); |
b2d179be | 9730 | xg_emit_insn_to_buf (tinsn, immed_instr, fragP, |
43cd72b9 | 9731 | immed_instr - fragP->fr_literal, TRUE); |
43cd72b9 | 9732 | } |
e0001a05 | 9733 | immed_instr += size; |
43cd72b9 | 9734 | total_size += size; |
e0001a05 NC |
9735 | break; |
9736 | } | |
9737 | } | |
9738 | ||
9739 | diff = total_size - old_size; | |
9c2799c2 | 9740 | gas_assert (diff >= 0); |
e0001a05 NC |
9741 | if (diff != 0) |
9742 | expanded = TRUE; | |
9c2799c2 | 9743 | gas_assert (diff <= fragP->fr_var); |
e0001a05 NC |
9744 | fragP->fr_var -= diff; |
9745 | fragP->fr_fix += diff; | |
9746 | } | |
9747 | ||
e0001a05 | 9748 | /* Check for undefined immediates in LOOP instructions. */ |
43cd72b9 | 9749 | if (is_loop) |
e0001a05 NC |
9750 | { |
9751 | symbolS *sym; | |
43cd72b9 | 9752 | sym = orig_tinsn.tok[1].X_add_symbol; |
e0001a05 NC |
9753 | if (sym != NULL && !S_IS_DEFINED (sym)) |
9754 | { | |
9755 | as_bad (_("unresolved loop target symbol: %s"), S_GET_NAME (sym)); | |
9756 | return; | |
9757 | } | |
43cd72b9 | 9758 | sym = orig_tinsn.tok[1].X_op_symbol; |
e0001a05 NC |
9759 | if (sym != NULL && !S_IS_DEFINED (sym)) |
9760 | { | |
9761 | as_bad (_("unresolved loop target symbol: %s"), S_GET_NAME (sym)); | |
9762 | return; | |
9763 | } | |
9764 | } | |
9765 | ||
43cd72b9 BW |
9766 | if (expanded && xtensa_opcode_is_loop (isa, orig_tinsn.opcode) == 1) |
9767 | convert_frag_immed_finish_loop (segP, fragP, &orig_tinsn); | |
e0001a05 | 9768 | |
43cd72b9 | 9769 | if (expanded && is_direct_call_opcode (orig_tinsn.opcode)) |
e0001a05 NC |
9770 | { |
9771 | /* Add an expansion note on the expanded instruction. */ | |
9772 | fix_new_exp_in_seg (now_seg, 0, fragP, fr_opcode - fragP->fr_literal, 4, | |
43cd72b9 | 9773 | &orig_tinsn.tok[0], TRUE, |
e0001a05 | 9774 | BFD_RELOC_XTENSA_ASM_EXPAND); |
e0001a05 NC |
9775 | } |
9776 | } | |
9777 | ||
9778 | ||
9779 | /* Add a new fix expression into the desired segment. We have to | |
9780 | switch to that segment to do this. */ | |
9781 | ||
9782 | static fixS * | |
7fa3d080 BW |
9783 | fix_new_exp_in_seg (segT new_seg, |
9784 | subsegT new_subseg, | |
9785 | fragS *frag, | |
9786 | int where, | |
9787 | int size, | |
9788 | expressionS *exp, | |
9789 | int pcrel, | |
9790 | bfd_reloc_code_real_type r_type) | |
e0001a05 NC |
9791 | { |
9792 | fixS *new_fix; | |
9793 | segT seg = now_seg; | |
9794 | subsegT subseg = now_subseg; | |
43cd72b9 | 9795 | |
9c2799c2 | 9796 | gas_assert (new_seg != 0); |
e0001a05 NC |
9797 | subseg_set (new_seg, new_subseg); |
9798 | ||
e0001a05 NC |
9799 | new_fix = fix_new_exp (frag, where, size, exp, pcrel, r_type); |
9800 | subseg_set (seg, subseg); | |
9801 | return new_fix; | |
9802 | } | |
9803 | ||
9804 | ||
43cd72b9 BW |
9805 | /* Relax a loop instruction so that it can span loop >256 bytes. |
9806 | ||
9807 | loop as, .L1 | |
9808 | .L0: | |
9809 | rsr as, LEND | |
9810 | wsr as, LBEG | |
9811 | addi as, as, lo8 (label-.L1) | |
9812 | addmi as, as, mid8 (label-.L1) | |
9813 | wsr as, LEND | |
9814 | isync | |
9815 | rsr as, LCOUNT | |
9816 | addi as, as, 1 | |
9817 | .L1: | |
9818 | <<body>> | |
9819 | label: | |
9820 | */ | |
e0001a05 NC |
9821 | |
9822 | static void | |
7fa3d080 | 9823 | convert_frag_immed_finish_loop (segT segP, fragS *fragP, TInsn *tinsn) |
e0001a05 NC |
9824 | { |
9825 | TInsn loop_insn; | |
9826 | TInsn addi_insn; | |
9827 | TInsn addmi_insn; | |
9828 | unsigned long target; | |
9829 | static xtensa_insnbuf insnbuf = NULL; | |
9830 | unsigned int loop_length, loop_length_hi, loop_length_lo; | |
9831 | xtensa_isa isa = xtensa_default_isa; | |
9832 | addressT loop_offset; | |
9833 | addressT addi_offset = 9; | |
9834 | addressT addmi_offset = 12; | |
43cd72b9 | 9835 | fragS *next_fragP; |
d77b99c9 | 9836 | int target_count; |
e0001a05 NC |
9837 | |
9838 | if (!insnbuf) | |
9839 | insnbuf = xtensa_insnbuf_alloc (isa); | |
9840 | ||
9841 | /* Get the loop offset. */ | |
43cd72b9 | 9842 | loop_offset = get_expanded_loop_offset (tinsn->opcode); |
e0001a05 | 9843 | |
43cd72b9 BW |
9844 | /* Validate that there really is a LOOP at the loop_offset. Because |
9845 | loops are not bundleable, we can assume that the instruction will be | |
9846 | in slot 0. */ | |
9847 | tinsn_from_chars (&loop_insn, fragP->fr_opcode + loop_offset, 0); | |
9848 | tinsn_immed_from_frag (&loop_insn, fragP, 0); | |
9849 | ||
9c2799c2 | 9850 | gas_assert (xtensa_opcode_is_loop (isa, loop_insn.opcode) == 1); |
e0001a05 NC |
9851 | addi_offset += loop_offset; |
9852 | addmi_offset += loop_offset; | |
9853 | ||
9c2799c2 | 9854 | gas_assert (tinsn->ntok == 2); |
b08b5071 BW |
9855 | if (tinsn->tok[1].X_op == O_constant) |
9856 | target = tinsn->tok[1].X_add_number; | |
9857 | else if (tinsn->tok[1].X_op == O_symbol) | |
9858 | { | |
9859 | /* Find the fragment. */ | |
9860 | symbolS *sym = tinsn->tok[1].X_add_symbol; | |
9c2799c2 | 9861 | gas_assert (S_GET_SEGMENT (sym) == segP |
b08b5071 BW |
9862 | || S_GET_SEGMENT (sym) == absolute_section); |
9863 | target = (S_GET_VALUE (sym) + tinsn->tok[1].X_add_number); | |
9864 | } | |
9865 | else | |
9866 | { | |
9867 | as_bad (_("invalid expression evaluation type %d"), tinsn->tok[1].X_op); | |
9868 | target = 0; | |
9869 | } | |
e0001a05 | 9870 | |
e0001a05 NC |
9871 | loop_length = target - (fragP->fr_address + fragP->fr_fix); |
9872 | loop_length_hi = loop_length & ~0x0ff; | |
9873 | loop_length_lo = loop_length & 0x0ff; | |
9874 | if (loop_length_lo >= 128) | |
9875 | { | |
9876 | loop_length_lo -= 256; | |
9877 | loop_length_hi += 256; | |
9878 | } | |
9879 | ||
43cd72b9 | 9880 | /* Because addmi sign-extends the immediate, 'loop_length_hi' can be at most |
e0001a05 NC |
9881 | 32512. If the loop is larger than that, then we just fail. */ |
9882 | if (loop_length_hi > 32512) | |
9883 | as_bad_where (fragP->fr_file, fragP->fr_line, | |
9884 | _("loop too long for LOOP instruction")); | |
9885 | ||
43cd72b9 | 9886 | tinsn_from_chars (&addi_insn, fragP->fr_opcode + addi_offset, 0); |
9c2799c2 | 9887 | gas_assert (addi_insn.opcode == xtensa_addi_opcode); |
e0001a05 | 9888 | |
43cd72b9 | 9889 | tinsn_from_chars (&addmi_insn, fragP->fr_opcode + addmi_offset, 0); |
9c2799c2 | 9890 | gas_assert (addmi_insn.opcode == xtensa_addmi_opcode); |
e0001a05 NC |
9891 | |
9892 | set_expr_const (&addi_insn.tok[2], loop_length_lo); | |
9893 | tinsn_to_insnbuf (&addi_insn, insnbuf); | |
43cd72b9 | 9894 | |
e0001a05 | 9895 | fragP->tc_frag_data.is_insn = TRUE; |
d77b99c9 BW |
9896 | xtensa_insnbuf_to_chars |
9897 | (isa, insnbuf, (unsigned char *) fragP->fr_opcode + addi_offset, 0); | |
e0001a05 NC |
9898 | |
9899 | set_expr_const (&addmi_insn.tok[2], loop_length_hi); | |
9900 | tinsn_to_insnbuf (&addmi_insn, insnbuf); | |
d77b99c9 BW |
9901 | xtensa_insnbuf_to_chars |
9902 | (isa, insnbuf, (unsigned char *) fragP->fr_opcode + addmi_offset, 0); | |
43cd72b9 BW |
9903 | |
9904 | /* Walk through all of the frags from here to the loop end | |
9905 | and mark them as no_transform to keep them from being modified | |
9906 | by the linker. If we ever have a relocation for the | |
9907 | addi/addmi of the difference of two symbols we can remove this. */ | |
9908 | ||
9909 | target_count = 0; | |
9910 | for (next_fragP = fragP; next_fragP != NULL; | |
9911 | next_fragP = next_fragP->fr_next) | |
9912 | { | |
b08b5071 | 9913 | next_fragP->tc_frag_data.is_no_transform = TRUE; |
43cd72b9 BW |
9914 | if (next_fragP->tc_frag_data.is_loop_target) |
9915 | target_count++; | |
9916 | if (target_count == 2) | |
9917 | break; | |
9918 | } | |
e0001a05 NC |
9919 | } |
9920 | ||
b08b5071 BW |
9921 | \f |
9922 | /* A map that keeps information on a per-subsegment basis. This is | |
9923 | maintained during initial assembly, but is invalid once the | |
9924 | subsegments are smashed together. I.E., it cannot be used during | |
9925 | the relaxation. */ | |
e0001a05 | 9926 | |
b08b5071 | 9927 | typedef struct subseg_map_struct |
e0001a05 | 9928 | { |
b08b5071 BW |
9929 | /* the key */ |
9930 | segT seg; | |
9931 | subsegT subseg; | |
e0001a05 | 9932 | |
b08b5071 BW |
9933 | /* the data */ |
9934 | unsigned flags; | |
9935 | float total_freq; /* fall-through + branch target frequency */ | |
9936 | float target_freq; /* branch target frequency alone */ | |
9937 | ||
9938 | struct subseg_map_struct *next; | |
9939 | } subseg_map; | |
e0001a05 | 9940 | |
e0001a05 | 9941 | |
e0001a05 NC |
9942 | static subseg_map *sseg_map = NULL; |
9943 | ||
43cd72b9 | 9944 | static subseg_map * |
7fa3d080 | 9945 | get_subseg_info (segT seg, subsegT subseg) |
e0001a05 NC |
9946 | { |
9947 | subseg_map *subseg_e; | |
9948 | ||
9949 | for (subseg_e = sseg_map; subseg_e; subseg_e = subseg_e->next) | |
e0001a05 | 9950 | { |
43cd72b9 | 9951 | if (seg == subseg_e->seg && subseg == subseg_e->subseg) |
b08b5071 | 9952 | break; |
e0001a05 | 9953 | } |
b08b5071 BW |
9954 | return subseg_e; |
9955 | } | |
9956 | ||
9957 | ||
9958 | static subseg_map * | |
9959 | add_subseg_info (segT seg, subsegT subseg) | |
9960 | { | |
9961 | subseg_map *subseg_e = (subseg_map *) xmalloc (sizeof (subseg_map)); | |
43cd72b9 BW |
9962 | memset (subseg_e, 0, sizeof (subseg_map)); |
9963 | subseg_e->seg = seg; | |
9964 | subseg_e->subseg = subseg; | |
9965 | subseg_e->flags = 0; | |
9966 | /* Start off considering every branch target very important. */ | |
b08b5071 BW |
9967 | subseg_e->target_freq = 1.0; |
9968 | subseg_e->total_freq = 1.0; | |
43cd72b9 BW |
9969 | subseg_e->next = sseg_map; |
9970 | sseg_map = subseg_e; | |
43cd72b9 BW |
9971 | return subseg_e; |
9972 | } | |
e0001a05 | 9973 | |
7fa3d080 BW |
9974 | |
9975 | static unsigned | |
9976 | get_last_insn_flags (segT seg, subsegT subseg) | |
9977 | { | |
9978 | subseg_map *subseg_e = get_subseg_info (seg, subseg); | |
b08b5071 BW |
9979 | if (subseg_e) |
9980 | return subseg_e->flags; | |
9981 | return 0; | |
7fa3d080 BW |
9982 | } |
9983 | ||
9984 | ||
43cd72b9 | 9985 | static void |
7fa3d080 BW |
9986 | set_last_insn_flags (segT seg, |
9987 | subsegT subseg, | |
9988 | unsigned fl, | |
9989 | bfd_boolean val) | |
43cd72b9 BW |
9990 | { |
9991 | subseg_map *subseg_e = get_subseg_info (seg, subseg); | |
b08b5071 BW |
9992 | if (! subseg_e) |
9993 | subseg_e = add_subseg_info (seg, subseg); | |
e0001a05 NC |
9994 | if (val) |
9995 | subseg_e->flags |= fl; | |
9996 | else | |
9997 | subseg_e->flags &= ~fl; | |
9998 | } | |
9999 | ||
b08b5071 BW |
10000 | |
10001 | static float | |
10002 | get_subseg_total_freq (segT seg, subsegT subseg) | |
10003 | { | |
10004 | subseg_map *subseg_e = get_subseg_info (seg, subseg); | |
10005 | if (subseg_e) | |
10006 | return subseg_e->total_freq; | |
10007 | return 1.0; | |
10008 | } | |
10009 | ||
10010 | ||
10011 | static float | |
10012 | get_subseg_target_freq (segT seg, subsegT subseg) | |
10013 | { | |
10014 | subseg_map *subseg_e = get_subseg_info (seg, subseg); | |
10015 | if (subseg_e) | |
10016 | return subseg_e->target_freq; | |
10017 | return 1.0; | |
10018 | } | |
10019 | ||
10020 | ||
10021 | static void | |
10022 | set_subseg_freq (segT seg, subsegT subseg, float total_f, float target_f) | |
10023 | { | |
10024 | subseg_map *subseg_e = get_subseg_info (seg, subseg); | |
10025 | if (! subseg_e) | |
10026 | subseg_e = add_subseg_info (seg, subseg); | |
10027 | subseg_e->total_freq = total_f; | |
10028 | subseg_e->target_freq = target_f; | |
10029 | } | |
10030 | ||
e0001a05 NC |
10031 | \f |
10032 | /* Segment Lists and emit_state Stuff. */ | |
10033 | ||
e0001a05 | 10034 | static void |
7fa3d080 | 10035 | xtensa_move_seg_list_to_beginning (seg_list *head) |
e0001a05 NC |
10036 | { |
10037 | head = head->next; | |
10038 | while (head) | |
10039 | { | |
10040 | segT literal_section = head->seg; | |
10041 | ||
10042 | /* Move the literal section to the front of the section list. */ | |
9c2799c2 | 10043 | gas_assert (literal_section); |
69852798 AM |
10044 | if (literal_section != stdoutput->sections) |
10045 | { | |
10046 | bfd_section_list_remove (stdoutput, literal_section); | |
10047 | bfd_section_list_prepend (stdoutput, literal_section); | |
10048 | } | |
e0001a05 NC |
10049 | head = head->next; |
10050 | } | |
10051 | } | |
10052 | ||
10053 | ||
7fa3d080 BW |
10054 | static void mark_literal_frags (seg_list *); |
10055 | ||
10056 | static void | |
10057 | xtensa_move_literals (void) | |
e0001a05 NC |
10058 | { |
10059 | seg_list *segment; | |
10060 | frchainS *frchain_from, *frchain_to; | |
10061 | fragS *search_frag, *next_frag, *last_frag, *literal_pool, *insert_after; | |
10062 | fragS **frag_splice; | |
10063 | emit_state state; | |
10064 | segT dest_seg; | |
10065 | fixS *fix, *next_fix, **fix_splice; | |
82e7541d | 10066 | sym_list *lit; |
e0001a05 | 10067 | |
a7877748 | 10068 | mark_literal_frags (literal_head->next); |
e0001a05 NC |
10069 | |
10070 | if (use_literal_section) | |
10071 | return; | |
10072 | ||
74869ac7 | 10073 | for (segment = literal_head->next; segment; segment = segment->next) |
e0001a05 | 10074 | { |
74869ac7 BW |
10075 | /* Keep the literals for .init and .fini in separate sections. */ |
10076 | if (!strcmp (segment_name (segment->seg), INIT_SECTION_NAME) | |
10077 | || !strcmp (segment_name (segment->seg), FINI_SECTION_NAME)) | |
10078 | continue; | |
10079 | ||
e0001a05 NC |
10080 | frchain_from = seg_info (segment->seg)->frchainP; |
10081 | search_frag = frchain_from->frch_root; | |
10082 | literal_pool = NULL; | |
10083 | frchain_to = NULL; | |
10084 | frag_splice = &(frchain_from->frch_root); | |
10085 | ||
10086 | while (!search_frag->tc_frag_data.literal_frag) | |
10087 | { | |
9c2799c2 | 10088 | gas_assert (search_frag->fr_fix == 0 |
e0001a05 NC |
10089 | || search_frag->fr_type == rs_align); |
10090 | search_frag = search_frag->fr_next; | |
10091 | } | |
10092 | ||
9c2799c2 | 10093 | gas_assert (search_frag->tc_frag_data.literal_frag->fr_subtype |
e0001a05 NC |
10094 | == RELAX_LITERAL_POOL_BEGIN); |
10095 | xtensa_switch_section_emit_state (&state, segment->seg, 0); | |
10096 | ||
10097 | /* Make sure that all the frags in this series are closed, and | |
10098 | that there is at least one left over of zero-size. This | |
10099 | prevents us from making a segment with an frchain without any | |
10100 | frags in it. */ | |
10101 | frag_variant (rs_fill, 0, 0, 0, NULL, 0, NULL); | |
43cd72b9 | 10102 | xtensa_set_frag_assembly_state (frag_now); |
e0001a05 NC |
10103 | last_frag = frag_now; |
10104 | frag_variant (rs_fill, 0, 0, 0, NULL, 0, NULL); | |
43cd72b9 | 10105 | xtensa_set_frag_assembly_state (frag_now); |
e0001a05 | 10106 | |
43cd72b9 | 10107 | while (search_frag != frag_now) |
e0001a05 NC |
10108 | { |
10109 | next_frag = search_frag->fr_next; | |
10110 | ||
43cd72b9 | 10111 | /* First, move the frag out of the literal section and |
e0001a05 NC |
10112 | to the appropriate place. */ |
10113 | if (search_frag->tc_frag_data.literal_frag) | |
10114 | { | |
10115 | literal_pool = search_frag->tc_frag_data.literal_frag; | |
9c2799c2 | 10116 | gas_assert (literal_pool->fr_subtype == RELAX_LITERAL_POOL_BEGIN); |
dd49a749 | 10117 | frchain_to = literal_pool->tc_frag_data.lit_frchain; |
9c2799c2 | 10118 | gas_assert (frchain_to); |
e0001a05 | 10119 | } |
c48aaca0 | 10120 | insert_after = literal_pool->tc_frag_data.literal_frag; |
dd49a749 | 10121 | dest_seg = insert_after->fr_next->tc_frag_data.lit_seg; |
43cd72b9 | 10122 | |
e0001a05 NC |
10123 | *frag_splice = next_frag; |
10124 | search_frag->fr_next = insert_after->fr_next; | |
10125 | insert_after->fr_next = search_frag; | |
10126 | search_frag->tc_frag_data.lit_seg = dest_seg; | |
c48aaca0 | 10127 | literal_pool->tc_frag_data.literal_frag = search_frag; |
e0001a05 NC |
10128 | |
10129 | /* Now move any fixups associated with this frag to the | |
10130 | right section. */ | |
10131 | fix = frchain_from->fix_root; | |
10132 | fix_splice = &(frchain_from->fix_root); | |
10133 | while (fix) | |
10134 | { | |
10135 | next_fix = fix->fx_next; | |
10136 | if (fix->fx_frag == search_frag) | |
10137 | { | |
10138 | *fix_splice = next_fix; | |
10139 | fix->fx_next = frchain_to->fix_root; | |
10140 | frchain_to->fix_root = fix; | |
10141 | if (frchain_to->fix_tail == NULL) | |
10142 | frchain_to->fix_tail = fix; | |
10143 | } | |
10144 | else | |
10145 | fix_splice = &(fix->fx_next); | |
10146 | fix = next_fix; | |
10147 | } | |
10148 | search_frag = next_frag; | |
10149 | } | |
10150 | ||
10151 | if (frchain_from->fix_root != NULL) | |
10152 | { | |
10153 | frchain_from = seg_info (segment->seg)->frchainP; | |
10154 | as_warn (_("fixes not all moved from %s"), segment->seg->name); | |
10155 | ||
9c2799c2 | 10156 | gas_assert (frchain_from->fix_root == NULL); |
e0001a05 NC |
10157 | } |
10158 | frchain_from->fix_tail = NULL; | |
10159 | xtensa_restore_emit_state (&state); | |
e0001a05 NC |
10160 | } |
10161 | ||
82e7541d BW |
10162 | /* Now fix up the SEGMENT value for all the literal symbols. */ |
10163 | for (lit = literal_syms; lit; lit = lit->next) | |
10164 | { | |
10165 | symbolS *lit_sym = lit->sym; | |
91d6fa6a NC |
10166 | segT dseg = symbol_get_frag (lit_sym)->tc_frag_data.lit_seg; |
10167 | if (dseg) | |
10168 | S_SET_SEGMENT (lit_sym, dseg); | |
82e7541d | 10169 | } |
e0001a05 NC |
10170 | } |
10171 | ||
10172 | ||
a7877748 BW |
10173 | /* Walk over all the frags for segments in a list and mark them as |
10174 | containing literals. As clunky as this is, we can't rely on frag_var | |
10175 | and frag_variant to get called in all situations. */ | |
10176 | ||
10177 | static void | |
7fa3d080 | 10178 | mark_literal_frags (seg_list *segment) |
a7877748 BW |
10179 | { |
10180 | frchainS *frchain_from; | |
10181 | fragS *search_frag; | |
10182 | ||
10183 | while (segment) | |
10184 | { | |
10185 | frchain_from = seg_info (segment->seg)->frchainP; | |
10186 | search_frag = frchain_from->frch_root; | |
c138bc38 | 10187 | while (search_frag) |
a7877748 BW |
10188 | { |
10189 | search_frag->tc_frag_data.is_literal = TRUE; | |
10190 | search_frag = search_frag->fr_next; | |
10191 | } | |
10192 | segment = segment->next; | |
10193 | } | |
10194 | } | |
10195 | ||
10196 | ||
e0001a05 | 10197 | static void |
7fa3d080 | 10198 | xtensa_reorder_seg_list (seg_list *head, segT after) |
e0001a05 NC |
10199 | { |
10200 | /* Move all of the sections in the section list to come | |
10201 | after "after" in the gnu segment list. */ | |
10202 | ||
10203 | head = head->next; | |
10204 | while (head) | |
10205 | { | |
10206 | segT literal_section = head->seg; | |
10207 | ||
10208 | /* Move the literal section after "after". */ | |
9c2799c2 | 10209 | gas_assert (literal_section); |
e0001a05 NC |
10210 | if (literal_section != after) |
10211 | { | |
69852798 AM |
10212 | bfd_section_list_remove (stdoutput, literal_section); |
10213 | bfd_section_list_insert_after (stdoutput, after, literal_section); | |
e0001a05 NC |
10214 | } |
10215 | ||
10216 | head = head->next; | |
10217 | } | |
10218 | } | |
10219 | ||
10220 | ||
10221 | /* Push all the literal segments to the end of the gnu list. */ | |
10222 | ||
7fa3d080 BW |
10223 | static void |
10224 | xtensa_reorder_segments (void) | |
e0001a05 NC |
10225 | { |
10226 | segT sec; | |
b08b5071 | 10227 | segT last_sec = 0; |
e0001a05 NC |
10228 | int old_count = 0; |
10229 | int new_count = 0; | |
10230 | ||
10231 | for (sec = stdoutput->sections; sec != NULL; sec = sec->next) | |
b08b5071 BW |
10232 | { |
10233 | last_sec = sec; | |
10234 | old_count++; | |
10235 | } | |
e0001a05 NC |
10236 | |
10237 | /* Now that we have the last section, push all the literal | |
10238 | sections to the end. */ | |
e0001a05 | 10239 | xtensa_reorder_seg_list (literal_head, last_sec); |
e0001a05 NC |
10240 | |
10241 | /* Now perform the final error check. */ | |
10242 | for (sec = stdoutput->sections; sec != NULL; sec = sec->next) | |
10243 | new_count++; | |
9c2799c2 | 10244 | gas_assert (new_count == old_count); |
e0001a05 NC |
10245 | } |
10246 | ||
10247 | ||
e0001a05 NC |
10248 | /* Change the emit state (seg, subseg, and frag related stuff) to the |
10249 | correct location. Return a emit_state which can be passed to | |
10250 | xtensa_restore_emit_state to return to current fragment. */ | |
10251 | ||
7fa3d080 BW |
10252 | static void |
10253 | xtensa_switch_to_literal_fragment (emit_state *result) | |
43cd72b9 BW |
10254 | { |
10255 | if (directive_state[directive_absolute_literals]) | |
10256 | { | |
74869ac7 BW |
10257 | segT lit4_seg = cache_literal_section (TRUE); |
10258 | xtensa_switch_section_emit_state (result, lit4_seg, 0); | |
43cd72b9 BW |
10259 | } |
10260 | else | |
10261 | xtensa_switch_to_non_abs_literal_fragment (result); | |
10262 | ||
10263 | /* Do a 4-byte align here. */ | |
10264 | frag_align (2, 0, 0); | |
10265 | record_alignment (now_seg, 2); | |
10266 | } | |
10267 | ||
10268 | ||
7fa3d080 BW |
10269 | static void |
10270 | xtensa_switch_to_non_abs_literal_fragment (emit_state *result) | |
e0001a05 | 10271 | { |
e0001a05 NC |
10272 | static bfd_boolean recursive = FALSE; |
10273 | fragS *pool_location = get_literal_pool_location (now_seg); | |
74869ac7 | 10274 | segT lit_seg; |
c138bc38 | 10275 | bfd_boolean is_init = |
e0001a05 | 10276 | (now_seg && !strcmp (segment_name (now_seg), INIT_SECTION_NAME)); |
c138bc38 | 10277 | bfd_boolean is_fini = |
e0001a05 | 10278 | (now_seg && !strcmp (segment_name (now_seg), FINI_SECTION_NAME)); |
e0001a05 | 10279 | |
43cd72b9 BW |
10280 | if (pool_location == NULL |
10281 | && !use_literal_section | |
e0001a05 NC |
10282 | && !recursive |
10283 | && !is_init && ! is_fini) | |
10284 | { | |
43cd72b9 | 10285 | as_bad (_("literal pool location required for text-section-literals; specify with .literal_position")); |
74869ac7 BW |
10286 | |
10287 | /* When we mark a literal pool location, we want to put a frag in | |
10288 | the literal pool that points to it. But to do that, we want to | |
10289 | switch_to_literal_fragment. But literal sections don't have | |
10290 | literal pools, so their location is always null, so we would | |
10291 | recurse forever. This is kind of hacky, but it works. */ | |
10292 | ||
e0001a05 | 10293 | recursive = TRUE; |
61846f28 | 10294 | xtensa_mark_literal_pool_location (); |
e0001a05 NC |
10295 | recursive = FALSE; |
10296 | } | |
10297 | ||
74869ac7 BW |
10298 | lit_seg = cache_literal_section (FALSE); |
10299 | xtensa_switch_section_emit_state (result, lit_seg, 0); | |
e0001a05 | 10300 | |
43cd72b9 BW |
10301 | if (!use_literal_section |
10302 | && !is_init && !is_fini | |
10303 | && get_literal_pool_location (now_seg) != pool_location) | |
e0001a05 NC |
10304 | { |
10305 | /* Close whatever frag is there. */ | |
10306 | frag_variant (rs_fill, 0, 0, 0, NULL, 0, NULL); | |
43cd72b9 | 10307 | xtensa_set_frag_assembly_state (frag_now); |
e0001a05 NC |
10308 | frag_now->tc_frag_data.literal_frag = pool_location; |
10309 | frag_variant (rs_fill, 0, 0, 0, NULL, 0, NULL); | |
43cd72b9 | 10310 | xtensa_set_frag_assembly_state (frag_now); |
e0001a05 | 10311 | } |
e0001a05 NC |
10312 | } |
10313 | ||
10314 | ||
10315 | /* Call this function before emitting data into the literal section. | |
10316 | This is a helper function for xtensa_switch_to_literal_fragment. | |
10317 | This is similar to a .section new_now_seg subseg. */ | |
10318 | ||
7fa3d080 BW |
10319 | static void |
10320 | xtensa_switch_section_emit_state (emit_state *state, | |
10321 | segT new_now_seg, | |
10322 | subsegT new_now_subseg) | |
e0001a05 NC |
10323 | { |
10324 | state->name = now_seg->name; | |
10325 | state->now_seg = now_seg; | |
10326 | state->now_subseg = now_subseg; | |
10327 | state->generating_literals = generating_literals; | |
10328 | generating_literals++; | |
2b0210eb | 10329 | subseg_set (new_now_seg, new_now_subseg); |
e0001a05 NC |
10330 | } |
10331 | ||
10332 | ||
10333 | /* Use to restore the emitting into the normal place. */ | |
10334 | ||
7fa3d080 BW |
10335 | static void |
10336 | xtensa_restore_emit_state (emit_state *state) | |
e0001a05 NC |
10337 | { |
10338 | generating_literals = state->generating_literals; | |
2b0210eb | 10339 | subseg_set (state->now_seg, state->now_subseg); |
e0001a05 NC |
10340 | } |
10341 | ||
10342 | ||
74869ac7 | 10343 | /* Predicate function used to look up a section in a particular group. */ |
e0001a05 | 10344 | |
74869ac7 BW |
10345 | static bfd_boolean |
10346 | match_section_group (bfd *abfd ATTRIBUTE_UNUSED, asection *sec, void *inf) | |
e0001a05 | 10347 | { |
74869ac7 BW |
10348 | const char *gname = inf; |
10349 | const char *group_name = elf_group_name (sec); | |
10350 | ||
10351 | return (group_name == gname | |
10352 | || (group_name != NULL | |
10353 | && gname != NULL | |
10354 | && strcmp (group_name, gname) == 0)); | |
10355 | } | |
e0001a05 | 10356 | |
e0001a05 | 10357 | |
74869ac7 BW |
10358 | /* Get the literal section to be used for the current text section. |
10359 | The result may be cached in the default_lit_sections structure. */ | |
10360 | ||
10361 | static segT | |
10362 | cache_literal_section (bfd_boolean use_abs_literals) | |
10363 | { | |
10364 | const char *text_name, *group_name = 0; | |
10365 | char *base_name, *name, *suffix; | |
10366 | segT *pcached; | |
10367 | segT seg, current_section; | |
10368 | int current_subsec; | |
10369 | bfd_boolean linkonce = FALSE; | |
10370 | ||
10371 | /* Save the current section/subsection. */ | |
10372 | current_section = now_seg; | |
10373 | current_subsec = now_subseg; | |
10374 | ||
10375 | /* Clear the cached values if they are no longer valid. */ | |
10376 | if (now_seg != default_lit_sections.current_text_seg) | |
b08b5071 | 10377 | { |
74869ac7 BW |
10378 | default_lit_sections.current_text_seg = now_seg; |
10379 | default_lit_sections.lit_seg = NULL; | |
10380 | default_lit_sections.lit4_seg = NULL; | |
10381 | } | |
10382 | ||
10383 | /* Check if the literal section is already cached. */ | |
10384 | if (use_abs_literals) | |
10385 | pcached = &default_lit_sections.lit4_seg; | |
10386 | else | |
10387 | pcached = &default_lit_sections.lit_seg; | |
10388 | ||
10389 | if (*pcached) | |
10390 | return *pcached; | |
10391 | ||
10392 | text_name = default_lit_sections.lit_prefix; | |
10393 | if (! text_name || ! *text_name) | |
10394 | { | |
10395 | text_name = segment_name (current_section); | |
10396 | group_name = elf_group_name (current_section); | |
10397 | linkonce = (current_section->flags & SEC_LINK_ONCE) != 0; | |
10398 | } | |
10399 | ||
10400 | base_name = use_abs_literals ? ".lit4" : ".literal"; | |
10401 | if (group_name) | |
10402 | { | |
10403 | name = xmalloc (strlen (base_name) + strlen (group_name) + 2); | |
10404 | sprintf (name, "%s.%s", base_name, group_name); | |
10405 | } | |
10406 | else if (strncmp (text_name, ".gnu.linkonce.", linkonce_len) == 0) | |
10407 | { | |
10408 | suffix = strchr (text_name + linkonce_len, '.'); | |
10409 | ||
10410 | name = xmalloc (linkonce_len + strlen (base_name) + 1 | |
10411 | + (suffix ? strlen (suffix) : 0)); | |
10412 | strcpy (name, ".gnu.linkonce"); | |
10413 | strcat (name, base_name); | |
10414 | if (suffix) | |
10415 | strcat (name, suffix); | |
10416 | linkonce = TRUE; | |
10417 | } | |
10418 | else | |
10419 | { | |
10420 | /* If the section name ends with ".text", then replace that suffix | |
10421 | instead of appending an additional suffix. */ | |
10422 | size_t len = strlen (text_name); | |
10423 | if (len >= 5 && strcmp (text_name + len - 5, ".text") == 0) | |
10424 | len -= 5; | |
10425 | ||
10426 | name = xmalloc (len + strlen (base_name) + 1); | |
10427 | strcpy (name, text_name); | |
10428 | strcpy (name + len, base_name); | |
b08b5071 | 10429 | } |
e0001a05 | 10430 | |
74869ac7 BW |
10431 | /* Canonicalize section names to allow renaming literal sections. |
10432 | The group name, if any, came from the current text section and | |
10433 | has already been canonicalized. */ | |
10434 | name = tc_canonicalize_symbol_name (name); | |
10435 | ||
10436 | seg = bfd_get_section_by_name_if (stdoutput, name, match_section_group, | |
10437 | (void *) group_name); | |
10438 | if (! seg) | |
e0001a05 | 10439 | { |
74869ac7 BW |
10440 | flagword flags; |
10441 | ||
10442 | seg = subseg_force_new (name, 0); | |
10443 | ||
10444 | if (! use_abs_literals) | |
b08b5071 | 10445 | { |
74869ac7 | 10446 | /* Add the newly created literal segment to the list. */ |
b08b5071 BW |
10447 | seg_list *n = (seg_list *) xmalloc (sizeof (seg_list)); |
10448 | n->seg = seg; | |
74869ac7 BW |
10449 | n->next = literal_head->next; |
10450 | literal_head->next = n; | |
b08b5071 | 10451 | } |
74869ac7 BW |
10452 | |
10453 | flags = (SEC_HAS_CONTENTS | SEC_READONLY | SEC_ALLOC | SEC_LOAD | |
10454 | | (linkonce ? (SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD) : 0) | |
10455 | | (use_abs_literals ? SEC_DATA : SEC_CODE)); | |
10456 | ||
10457 | elf_group_name (seg) = group_name; | |
10458 | ||
10459 | bfd_set_section_flags (stdoutput, seg, flags); | |
b08b5071 | 10460 | bfd_set_section_alignment (stdoutput, seg, 2); |
e0001a05 NC |
10461 | } |
10462 | ||
74869ac7 | 10463 | *pcached = seg; |
b08b5071 | 10464 | subseg_set (current_section, current_subsec); |
74869ac7 | 10465 | return seg; |
e0001a05 NC |
10466 | } |
10467 | ||
43cd72b9 BW |
10468 | \f |
10469 | /* Property Tables Stuff. */ | |
10470 | ||
7fa3d080 BW |
10471 | #define XTENSA_INSN_SEC_NAME ".xt.insn" |
10472 | #define XTENSA_LIT_SEC_NAME ".xt.lit" | |
10473 | #define XTENSA_PROP_SEC_NAME ".xt.prop" | |
10474 | ||
10475 | typedef bfd_boolean (*frag_predicate) (const fragS *); | |
10476 | typedef void (*frag_flags_fn) (const fragS *, frag_flags *); | |
10477 | ||
b08b5071 | 10478 | static bfd_boolean get_frag_is_literal (const fragS *); |
7fa3d080 BW |
10479 | static void xtensa_create_property_segments |
10480 | (frag_predicate, frag_predicate, const char *, xt_section_type); | |
10481 | static void xtensa_create_xproperty_segments | |
10482 | (frag_flags_fn, const char *, xt_section_type); | |
532f93bd | 10483 | static bfd_boolean exclude_section_from_property_tables (segT); |
7fa3d080 BW |
10484 | static bfd_boolean section_has_property (segT, frag_predicate); |
10485 | static bfd_boolean section_has_xproperty (segT, frag_flags_fn); | |
10486 | static void add_xt_block_frags | |
542f8b94 | 10487 | (segT, xtensa_block_info **, frag_predicate, frag_predicate); |
7fa3d080 BW |
10488 | static bfd_boolean xtensa_frag_flags_is_empty (const frag_flags *); |
10489 | static void xtensa_frag_flags_init (frag_flags *); | |
10490 | static void get_frag_property_flags (const fragS *, frag_flags *); | |
2f1bf5c1 | 10491 | static flagword frag_flags_to_number (const frag_flags *); |
542f8b94 | 10492 | static void add_xt_prop_frags (segT, xtensa_block_info **, frag_flags_fn); |
7fa3d080 BW |
10493 | |
10494 | /* Set up property tables after relaxation. */ | |
10495 | ||
10496 | void | |
10497 | xtensa_post_relax_hook (void) | |
10498 | { | |
10499 | xtensa_move_seg_list_to_beginning (literal_head); | |
7fa3d080 BW |
10500 | |
10501 | xtensa_find_unmarked_state_frags (); | |
99ded152 | 10502 | xtensa_mark_frags_for_org (); |
6a7eedfe | 10503 | xtensa_mark_difference_of_two_symbols (); |
7fa3d080 | 10504 | |
b29757dc BW |
10505 | xtensa_create_property_segments (get_frag_is_literal, |
10506 | NULL, | |
10507 | XTENSA_LIT_SEC_NAME, | |
10508 | xt_literal_sec); | |
7fa3d080 BW |
10509 | xtensa_create_xproperty_segments (get_frag_property_flags, |
10510 | XTENSA_PROP_SEC_NAME, | |
10511 | xt_prop_sec); | |
10512 | ||
10513 | if (warn_unaligned_branch_targets) | |
10514 | bfd_map_over_sections (stdoutput, xtensa_find_unaligned_branch_targets, 0); | |
10515 | bfd_map_over_sections (stdoutput, xtensa_find_unaligned_loops, 0); | |
10516 | } | |
10517 | ||
10518 | ||
43cd72b9 BW |
10519 | /* This function is only meaningful after xtensa_move_literals. */ |
10520 | ||
10521 | static bfd_boolean | |
7fa3d080 | 10522 | get_frag_is_literal (const fragS *fragP) |
43cd72b9 | 10523 | { |
9c2799c2 | 10524 | gas_assert (fragP != NULL); |
43cd72b9 BW |
10525 | return fragP->tc_frag_data.is_literal; |
10526 | } | |
10527 | ||
10528 | ||
43cd72b9 | 10529 | static void |
7fa3d080 BW |
10530 | xtensa_create_property_segments (frag_predicate property_function, |
10531 | frag_predicate end_property_function, | |
10532 | const char *section_name_base, | |
10533 | xt_section_type sec_type) | |
43cd72b9 BW |
10534 | { |
10535 | segT *seclist; | |
10536 | ||
10537 | /* Walk over all of the current segments. | |
10538 | Walk over each fragment | |
10539 | For each non-empty fragment, | |
10540 | Build a property record (append where possible). */ | |
10541 | ||
10542 | for (seclist = &stdoutput->sections; | |
10543 | seclist && *seclist; | |
10544 | seclist = &(*seclist)->next) | |
10545 | { | |
10546 | segT sec = *seclist; | |
43cd72b9 | 10547 | |
532f93bd | 10548 | if (exclude_section_from_property_tables (sec)) |
43cd72b9 BW |
10549 | continue; |
10550 | ||
10551 | if (section_has_property (sec, property_function)) | |
10552 | { | |
542f8b94 BW |
10553 | segment_info_type *xt_seg_info; |
10554 | xtensa_block_info **xt_blocks; | |
51c8ebc1 | 10555 | segT prop_sec = xtensa_make_property_section (sec, section_name_base); |
542f8b94 BW |
10556 | |
10557 | prop_sec->output_section = prop_sec; | |
10558 | subseg_set (prop_sec, 0); | |
10559 | xt_seg_info = seg_info (prop_sec); | |
10560 | xt_blocks = &xt_seg_info->tc_segment_info_data.blocks[sec_type]; | |
10561 | ||
43cd72b9 | 10562 | /* Walk over all of the frchains here and add new sections. */ |
542f8b94 | 10563 | add_xt_block_frags (sec, xt_blocks, property_function, |
43cd72b9 BW |
10564 | end_property_function); |
10565 | } | |
10566 | } | |
10567 | ||
10568 | /* Now we fill them out.... */ | |
10569 | ||
10570 | for (seclist = &stdoutput->sections; | |
10571 | seclist && *seclist; | |
10572 | seclist = &(*seclist)->next) | |
10573 | { | |
10574 | segment_info_type *seginfo; | |
10575 | xtensa_block_info *block; | |
10576 | segT sec = *seclist; | |
10577 | ||
10578 | seginfo = seg_info (sec); | |
10579 | block = seginfo->tc_segment_info_data.blocks[sec_type]; | |
10580 | ||
10581 | if (block) | |
10582 | { | |
10583 | xtensa_block_info *cur_block; | |
43cd72b9 | 10584 | int num_recs = 0; |
d77b99c9 | 10585 | bfd_size_type rec_size; |
43cd72b9 BW |
10586 | |
10587 | for (cur_block = block; cur_block; cur_block = cur_block->next) | |
10588 | num_recs++; | |
10589 | ||
10590 | rec_size = num_recs * 8; | |
10591 | bfd_set_section_size (stdoutput, sec, rec_size); | |
10592 | ||
43cd72b9 BW |
10593 | if (num_recs) |
10594 | { | |
43cd72b9 | 10595 | char *frag_data; |
542f8b94 | 10596 | int i; |
43cd72b9 | 10597 | |
542f8b94 BW |
10598 | subseg_set (sec, 0); |
10599 | frag_data = frag_more (rec_size); | |
43cd72b9 | 10600 | cur_block = block; |
43cd72b9 BW |
10601 | for (i = 0; i < num_recs; i++) |
10602 | { | |
542f8b94 | 10603 | fixS *fix; |
e0001a05 | 10604 | |
43cd72b9 | 10605 | /* Write the fixup. */ |
9c2799c2 | 10606 | gas_assert (cur_block); |
542f8b94 BW |
10607 | fix = fix_new (frag_now, i * 8, 4, |
10608 | section_symbol (cur_block->sec), | |
10609 | cur_block->offset, | |
10610 | FALSE, BFD_RELOC_32); | |
10611 | fix->fx_file = "<internal>"; | |
43cd72b9 | 10612 | fix->fx_line = 0; |
e0001a05 | 10613 | |
43cd72b9 | 10614 | /* Write the length. */ |
542f8b94 | 10615 | md_number_to_chars (&frag_data[4 + i * 8], |
43cd72b9 BW |
10616 | cur_block->size, 4); |
10617 | cur_block = cur_block->next; | |
10618 | } | |
542f8b94 BW |
10619 | frag_wane (frag_now); |
10620 | frag_new (0); | |
10621 | frag_wane (frag_now); | |
43cd72b9 BW |
10622 | } |
10623 | } | |
10624 | } | |
e0001a05 NC |
10625 | } |
10626 | ||
10627 | ||
7fa3d080 BW |
10628 | static void |
10629 | xtensa_create_xproperty_segments (frag_flags_fn flag_fn, | |
10630 | const char *section_name_base, | |
10631 | xt_section_type sec_type) | |
e0001a05 NC |
10632 | { |
10633 | segT *seclist; | |
10634 | ||
10635 | /* Walk over all of the current segments. | |
43cd72b9 BW |
10636 | Walk over each fragment. |
10637 | For each fragment that has instructions, | |
10638 | build an instruction record (append where possible). */ | |
e0001a05 NC |
10639 | |
10640 | for (seclist = &stdoutput->sections; | |
10641 | seclist && *seclist; | |
10642 | seclist = &(*seclist)->next) | |
10643 | { | |
10644 | segT sec = *seclist; | |
43cd72b9 | 10645 | |
532f93bd | 10646 | if (exclude_section_from_property_tables (sec)) |
43cd72b9 BW |
10647 | continue; |
10648 | ||
10649 | if (section_has_xproperty (sec, flag_fn)) | |
e0001a05 | 10650 | { |
542f8b94 BW |
10651 | segment_info_type *xt_seg_info; |
10652 | xtensa_block_info **xt_blocks; | |
51c8ebc1 | 10653 | segT prop_sec = xtensa_make_property_section (sec, section_name_base); |
542f8b94 BW |
10654 | |
10655 | prop_sec->output_section = prop_sec; | |
10656 | subseg_set (prop_sec, 0); | |
10657 | xt_seg_info = seg_info (prop_sec); | |
10658 | xt_blocks = &xt_seg_info->tc_segment_info_data.blocks[sec_type]; | |
10659 | ||
e0001a05 | 10660 | /* Walk over all of the frchains here and add new sections. */ |
542f8b94 | 10661 | add_xt_prop_frags (sec, xt_blocks, flag_fn); |
e0001a05 NC |
10662 | } |
10663 | } | |
10664 | ||
10665 | /* Now we fill them out.... */ | |
10666 | ||
10667 | for (seclist = &stdoutput->sections; | |
10668 | seclist && *seclist; | |
10669 | seclist = &(*seclist)->next) | |
10670 | { | |
10671 | segment_info_type *seginfo; | |
10672 | xtensa_block_info *block; | |
10673 | segT sec = *seclist; | |
43cd72b9 | 10674 | |
e0001a05 NC |
10675 | seginfo = seg_info (sec); |
10676 | block = seginfo->tc_segment_info_data.blocks[sec_type]; | |
10677 | ||
10678 | if (block) | |
10679 | { | |
10680 | xtensa_block_info *cur_block; | |
43cd72b9 | 10681 | int num_recs = 0; |
d77b99c9 | 10682 | bfd_size_type rec_size; |
e0001a05 NC |
10683 | |
10684 | for (cur_block = block; cur_block; cur_block = cur_block->next) | |
10685 | num_recs++; | |
10686 | ||
43cd72b9 | 10687 | rec_size = num_recs * (8 + 4); |
e0001a05 | 10688 | bfd_set_section_size (stdoutput, sec, rec_size); |
43cd72b9 BW |
10689 | /* elf_section_data (sec)->this_hdr.sh_entsize = 12; */ |
10690 | ||
e0001a05 NC |
10691 | if (num_recs) |
10692 | { | |
e0001a05 | 10693 | char *frag_data; |
542f8b94 | 10694 | int i; |
e0001a05 | 10695 | |
542f8b94 BW |
10696 | subseg_set (sec, 0); |
10697 | frag_data = frag_more (rec_size); | |
e0001a05 | 10698 | cur_block = block; |
e0001a05 NC |
10699 | for (i = 0; i < num_recs; i++) |
10700 | { | |
542f8b94 | 10701 | fixS *fix; |
e0001a05 NC |
10702 | |
10703 | /* Write the fixup. */ | |
9c2799c2 | 10704 | gas_assert (cur_block); |
542f8b94 BW |
10705 | fix = fix_new (frag_now, i * 12, 4, |
10706 | section_symbol (cur_block->sec), | |
10707 | cur_block->offset, | |
10708 | FALSE, BFD_RELOC_32); | |
10709 | fix->fx_file = "<internal>"; | |
e0001a05 NC |
10710 | fix->fx_line = 0; |
10711 | ||
10712 | /* Write the length. */ | |
542f8b94 | 10713 | md_number_to_chars (&frag_data[4 + i * 12], |
e0001a05 | 10714 | cur_block->size, 4); |
542f8b94 | 10715 | md_number_to_chars (&frag_data[8 + i * 12], |
43cd72b9 | 10716 | frag_flags_to_number (&cur_block->flags), |
2f1bf5c1 | 10717 | sizeof (flagword)); |
e0001a05 NC |
10718 | cur_block = cur_block->next; |
10719 | } | |
542f8b94 BW |
10720 | frag_wane (frag_now); |
10721 | frag_new (0); | |
10722 | frag_wane (frag_now); | |
e0001a05 NC |
10723 | } |
10724 | } | |
10725 | } | |
10726 | } | |
10727 | ||
10728 | ||
532f93bd BW |
10729 | static bfd_boolean |
10730 | exclude_section_from_property_tables (segT sec) | |
10731 | { | |
10732 | flagword flags = bfd_get_section_flags (stdoutput, sec); | |
10733 | ||
10734 | /* Sections that don't contribute to the memory footprint are excluded. */ | |
10735 | if ((flags & SEC_DEBUGGING) | |
10736 | || !(flags & SEC_ALLOC) | |
10737 | || (flags & SEC_MERGE)) | |
10738 | return TRUE; | |
10739 | ||
10740 | /* Linker cie and fde optimizations mess up property entries for | |
10741 | eh_frame sections, but there is nothing inside them relevant to | |
10742 | property tables anyway. */ | |
10743 | if (strcmp (sec->name, ".eh_frame") == 0) | |
10744 | return TRUE; | |
10745 | ||
10746 | return FALSE; | |
10747 | } | |
10748 | ||
10749 | ||
7fa3d080 BW |
10750 | static bfd_boolean |
10751 | section_has_property (segT sec, frag_predicate property_function) | |
e0001a05 NC |
10752 | { |
10753 | segment_info_type *seginfo = seg_info (sec); | |
10754 | fragS *fragP; | |
10755 | ||
10756 | if (seginfo && seginfo->frchainP) | |
10757 | { | |
10758 | for (fragP = seginfo->frchainP->frch_root; fragP; fragP = fragP->fr_next) | |
10759 | { | |
10760 | if (property_function (fragP) | |
10761 | && (fragP->fr_type != rs_fill || fragP->fr_fix != 0)) | |
10762 | return TRUE; | |
10763 | } | |
10764 | } | |
10765 | return FALSE; | |
10766 | } | |
10767 | ||
10768 | ||
7fa3d080 BW |
10769 | static bfd_boolean |
10770 | section_has_xproperty (segT sec, frag_flags_fn property_function) | |
43cd72b9 BW |
10771 | { |
10772 | segment_info_type *seginfo = seg_info (sec); | |
10773 | fragS *fragP; | |
10774 | ||
10775 | if (seginfo && seginfo->frchainP) | |
10776 | { | |
10777 | for (fragP = seginfo->frchainP->frch_root; fragP; fragP = fragP->fr_next) | |
10778 | { | |
10779 | frag_flags prop_flags; | |
10780 | property_function (fragP, &prop_flags); | |
10781 | if (!xtensa_frag_flags_is_empty (&prop_flags)) | |
10782 | return TRUE; | |
10783 | } | |
10784 | } | |
10785 | return FALSE; | |
10786 | } | |
10787 | ||
10788 | ||
e0001a05 NC |
10789 | /* Two types of block sections exist right now: literal and insns. */ |
10790 | ||
7fa3d080 BW |
10791 | static void |
10792 | add_xt_block_frags (segT sec, | |
7fa3d080 BW |
10793 | xtensa_block_info **xt_block, |
10794 | frag_predicate property_function, | |
10795 | frag_predicate end_property_function) | |
e0001a05 | 10796 | { |
e0001a05 NC |
10797 | fragS *fragP; |
10798 | ||
e0001a05 NC |
10799 | /* Build it if needed. */ |
10800 | while (*xt_block != NULL) | |
10801 | xt_block = &(*xt_block)->next; | |
10802 | /* We are either at NULL at the beginning or at the end. */ | |
10803 | ||
10804 | /* Walk through the frags. */ | |
542f8b94 | 10805 | if (seg_info (sec)->frchainP) |
e0001a05 | 10806 | { |
542f8b94 | 10807 | for (fragP = seg_info (sec)->frchainP->frch_root; |
e0001a05 NC |
10808 | fragP; |
10809 | fragP = fragP->fr_next) | |
10810 | { | |
10811 | if (property_function (fragP) | |
10812 | && (fragP->fr_type != rs_fill || fragP->fr_fix != 0)) | |
10813 | { | |
10814 | if (*xt_block != NULL) | |
10815 | { | |
10816 | if ((*xt_block)->offset + (*xt_block)->size | |
10817 | == fragP->fr_address) | |
10818 | (*xt_block)->size += fragP->fr_fix; | |
10819 | else | |
10820 | xt_block = &((*xt_block)->next); | |
10821 | } | |
10822 | if (*xt_block == NULL) | |
10823 | { | |
43cd72b9 BW |
10824 | xtensa_block_info *new_block = (xtensa_block_info *) |
10825 | xmalloc (sizeof (xtensa_block_info)); | |
10826 | new_block->sec = sec; | |
10827 | new_block->offset = fragP->fr_address; | |
10828 | new_block->size = fragP->fr_fix; | |
10829 | new_block->next = NULL; | |
10830 | xtensa_frag_flags_init (&new_block->flags); | |
10831 | *xt_block = new_block; | |
10832 | } | |
10833 | if (end_property_function | |
10834 | && end_property_function (fragP)) | |
10835 | { | |
10836 | xt_block = &((*xt_block)->next); | |
10837 | } | |
10838 | } | |
10839 | } | |
10840 | } | |
10841 | } | |
10842 | ||
10843 | ||
10844 | /* Break the encapsulation of add_xt_prop_frags here. */ | |
10845 | ||
7fa3d080 BW |
10846 | static bfd_boolean |
10847 | xtensa_frag_flags_is_empty (const frag_flags *prop_flags) | |
43cd72b9 BW |
10848 | { |
10849 | if (prop_flags->is_literal | |
10850 | || prop_flags->is_insn | |
10851 | || prop_flags->is_data | |
10852 | || prop_flags->is_unreachable) | |
10853 | return FALSE; | |
10854 | return TRUE; | |
10855 | } | |
10856 | ||
10857 | ||
7fa3d080 BW |
10858 | static void |
10859 | xtensa_frag_flags_init (frag_flags *prop_flags) | |
43cd72b9 BW |
10860 | { |
10861 | memset (prop_flags, 0, sizeof (frag_flags)); | |
10862 | } | |
10863 | ||
10864 | ||
7fa3d080 BW |
10865 | static void |
10866 | get_frag_property_flags (const fragS *fragP, frag_flags *prop_flags) | |
43cd72b9 BW |
10867 | { |
10868 | xtensa_frag_flags_init (prop_flags); | |
10869 | if (fragP->tc_frag_data.is_literal) | |
10870 | prop_flags->is_literal = TRUE; | |
99ded152 BW |
10871 | if (fragP->tc_frag_data.is_specific_opcode |
10872 | || fragP->tc_frag_data.is_no_transform) | |
1f7efbae BW |
10873 | { |
10874 | prop_flags->is_no_transform = TRUE; | |
10875 | if (xtensa_frag_flags_is_empty (prop_flags)) | |
10876 | prop_flags->is_data = TRUE; | |
10877 | } | |
43cd72b9 | 10878 | if (fragP->tc_frag_data.is_unreachable) |
7fa3d080 | 10879 | prop_flags->is_unreachable = TRUE; |
43cd72b9 BW |
10880 | else if (fragP->tc_frag_data.is_insn) |
10881 | { | |
10882 | prop_flags->is_insn = TRUE; | |
10883 | if (fragP->tc_frag_data.is_loop_target) | |
10884 | prop_flags->insn.is_loop_target = TRUE; | |
10885 | if (fragP->tc_frag_data.is_branch_target) | |
10886 | prop_flags->insn.is_branch_target = TRUE; | |
43cd72b9 BW |
10887 | if (fragP->tc_frag_data.is_no_density) |
10888 | prop_flags->insn.is_no_density = TRUE; | |
10889 | if (fragP->tc_frag_data.use_absolute_literals) | |
10890 | prop_flags->insn.is_abslit = TRUE; | |
10891 | } | |
10892 | if (fragP->tc_frag_data.is_align) | |
10893 | { | |
10894 | prop_flags->is_align = TRUE; | |
10895 | prop_flags->alignment = fragP->tc_frag_data.alignment; | |
10896 | if (xtensa_frag_flags_is_empty (prop_flags)) | |
10897 | prop_flags->is_data = TRUE; | |
10898 | } | |
10899 | } | |
10900 | ||
10901 | ||
2f1bf5c1 | 10902 | static flagword |
7fa3d080 | 10903 | frag_flags_to_number (const frag_flags *prop_flags) |
43cd72b9 | 10904 | { |
2f1bf5c1 | 10905 | flagword num = 0; |
43cd72b9 BW |
10906 | if (prop_flags->is_literal) |
10907 | num |= XTENSA_PROP_LITERAL; | |
10908 | if (prop_flags->is_insn) | |
10909 | num |= XTENSA_PROP_INSN; | |
10910 | if (prop_flags->is_data) | |
10911 | num |= XTENSA_PROP_DATA; | |
10912 | if (prop_flags->is_unreachable) | |
10913 | num |= XTENSA_PROP_UNREACHABLE; | |
10914 | if (prop_flags->insn.is_loop_target) | |
10915 | num |= XTENSA_PROP_INSN_LOOP_TARGET; | |
10916 | if (prop_flags->insn.is_branch_target) | |
10917 | { | |
10918 | num |= XTENSA_PROP_INSN_BRANCH_TARGET; | |
10919 | num = SET_XTENSA_PROP_BT_ALIGN (num, prop_flags->insn.bt_align_priority); | |
10920 | } | |
10921 | ||
10922 | if (prop_flags->insn.is_no_density) | |
10923 | num |= XTENSA_PROP_INSN_NO_DENSITY; | |
99ded152 BW |
10924 | if (prop_flags->is_no_transform) |
10925 | num |= XTENSA_PROP_NO_TRANSFORM; | |
43cd72b9 BW |
10926 | if (prop_flags->insn.is_no_reorder) |
10927 | num |= XTENSA_PROP_INSN_NO_REORDER; | |
10928 | if (prop_flags->insn.is_abslit) | |
10929 | num |= XTENSA_PROP_INSN_ABSLIT; | |
10930 | ||
10931 | if (prop_flags->is_align) | |
10932 | { | |
10933 | num |= XTENSA_PROP_ALIGN; | |
10934 | num = SET_XTENSA_PROP_ALIGNMENT (num, prop_flags->alignment); | |
10935 | } | |
10936 | ||
10937 | return num; | |
10938 | } | |
10939 | ||
10940 | ||
10941 | static bfd_boolean | |
7fa3d080 BW |
10942 | xtensa_frag_flags_combinable (const frag_flags *prop_flags_1, |
10943 | const frag_flags *prop_flags_2) | |
43cd72b9 BW |
10944 | { |
10945 | /* Cannot combine with an end marker. */ | |
10946 | ||
10947 | if (prop_flags_1->is_literal != prop_flags_2->is_literal) | |
10948 | return FALSE; | |
10949 | if (prop_flags_1->is_insn != prop_flags_2->is_insn) | |
10950 | return FALSE; | |
10951 | if (prop_flags_1->is_data != prop_flags_2->is_data) | |
10952 | return FALSE; | |
10953 | ||
10954 | if (prop_flags_1->is_insn) | |
10955 | { | |
10956 | /* Properties of the beginning of the frag. */ | |
10957 | if (prop_flags_2->insn.is_loop_target) | |
10958 | return FALSE; | |
10959 | if (prop_flags_2->insn.is_branch_target) | |
10960 | return FALSE; | |
10961 | if (prop_flags_1->insn.is_no_density != | |
10962 | prop_flags_2->insn.is_no_density) | |
10963 | return FALSE; | |
99ded152 BW |
10964 | if (prop_flags_1->is_no_transform != |
10965 | prop_flags_2->is_no_transform) | |
43cd72b9 BW |
10966 | return FALSE; |
10967 | if (prop_flags_1->insn.is_no_reorder != | |
10968 | prop_flags_2->insn.is_no_reorder) | |
10969 | return FALSE; | |
10970 | if (prop_flags_1->insn.is_abslit != | |
10971 | prop_flags_2->insn.is_abslit) | |
10972 | return FALSE; | |
10973 | } | |
10974 | ||
10975 | if (prop_flags_1->is_align) | |
10976 | return FALSE; | |
10977 | ||
10978 | return TRUE; | |
10979 | } | |
10980 | ||
10981 | ||
7fa3d080 BW |
10982 | static bfd_vma |
10983 | xt_block_aligned_size (const xtensa_block_info *xt_block) | |
43cd72b9 BW |
10984 | { |
10985 | bfd_vma end_addr; | |
d77b99c9 | 10986 | unsigned align_bits; |
43cd72b9 BW |
10987 | |
10988 | if (!xt_block->flags.is_align) | |
10989 | return xt_block->size; | |
10990 | ||
10991 | end_addr = xt_block->offset + xt_block->size; | |
10992 | align_bits = xt_block->flags.alignment; | |
10993 | end_addr = ((end_addr + ((1 << align_bits) -1)) >> align_bits) << align_bits; | |
10994 | return end_addr - xt_block->offset; | |
10995 | } | |
10996 | ||
10997 | ||
10998 | static bfd_boolean | |
7fa3d080 BW |
10999 | xtensa_xt_block_combine (xtensa_block_info *xt_block, |
11000 | const xtensa_block_info *xt_block_2) | |
43cd72b9 BW |
11001 | { |
11002 | if (xt_block->sec != xt_block_2->sec) | |
11003 | return FALSE; | |
11004 | if (xt_block->offset + xt_block_aligned_size (xt_block) | |
11005 | != xt_block_2->offset) | |
11006 | return FALSE; | |
11007 | ||
11008 | if (xt_block_2->size == 0 | |
11009 | && (!xt_block_2->flags.is_unreachable | |
11010 | || xt_block->flags.is_unreachable)) | |
11011 | { | |
11012 | if (xt_block_2->flags.is_align | |
11013 | && xt_block->flags.is_align) | |
11014 | { | |
11015 | /* Nothing needed. */ | |
11016 | if (xt_block->flags.alignment >= xt_block_2->flags.alignment) | |
11017 | return TRUE; | |
11018 | } | |
11019 | else | |
11020 | { | |
11021 | if (xt_block_2->flags.is_align) | |
11022 | { | |
11023 | /* Push alignment to previous entry. */ | |
11024 | xt_block->flags.is_align = xt_block_2->flags.is_align; | |
11025 | xt_block->flags.alignment = xt_block_2->flags.alignment; | |
11026 | } | |
11027 | return TRUE; | |
11028 | } | |
11029 | } | |
11030 | if (!xtensa_frag_flags_combinable (&xt_block->flags, | |
11031 | &xt_block_2->flags)) | |
11032 | return FALSE; | |
11033 | ||
11034 | xt_block->size += xt_block_2->size; | |
11035 | ||
11036 | if (xt_block_2->flags.is_align) | |
11037 | { | |
11038 | xt_block->flags.is_align = TRUE; | |
11039 | xt_block->flags.alignment = xt_block_2->flags.alignment; | |
11040 | } | |
11041 | ||
11042 | return TRUE; | |
11043 | } | |
11044 | ||
11045 | ||
7fa3d080 BW |
11046 | static void |
11047 | add_xt_prop_frags (segT sec, | |
7fa3d080 BW |
11048 | xtensa_block_info **xt_block, |
11049 | frag_flags_fn property_function) | |
43cd72b9 | 11050 | { |
43cd72b9 BW |
11051 | fragS *fragP; |
11052 | ||
43cd72b9 BW |
11053 | /* Build it if needed. */ |
11054 | while (*xt_block != NULL) | |
11055 | { | |
11056 | xt_block = &(*xt_block)->next; | |
11057 | } | |
11058 | /* We are either at NULL at the beginning or at the end. */ | |
11059 | ||
11060 | /* Walk through the frags. */ | |
542f8b94 | 11061 | if (seg_info (sec)->frchainP) |
43cd72b9 | 11062 | { |
542f8b94 | 11063 | for (fragP = seg_info (sec)->frchainP->frch_root; fragP; |
43cd72b9 BW |
11064 | fragP = fragP->fr_next) |
11065 | { | |
11066 | xtensa_block_info tmp_block; | |
11067 | tmp_block.sec = sec; | |
11068 | tmp_block.offset = fragP->fr_address; | |
11069 | tmp_block.size = fragP->fr_fix; | |
11070 | tmp_block.next = NULL; | |
11071 | property_function (fragP, &tmp_block.flags); | |
11072 | ||
11073 | if (!xtensa_frag_flags_is_empty (&tmp_block.flags)) | |
11074 | /* && fragP->fr_fix != 0) */ | |
11075 | { | |
11076 | if ((*xt_block) == NULL | |
11077 | || !xtensa_xt_block_combine (*xt_block, &tmp_block)) | |
11078 | { | |
11079 | xtensa_block_info *new_block; | |
11080 | if ((*xt_block) != NULL) | |
11081 | xt_block = &(*xt_block)->next; | |
11082 | new_block = (xtensa_block_info *) | |
11083 | xmalloc (sizeof (xtensa_block_info)); | |
11084 | *new_block = tmp_block; | |
11085 | *xt_block = new_block; | |
11086 | } | |
11087 | } | |
11088 | } | |
11089 | } | |
11090 | } | |
11091 | ||
11092 | \f | |
11093 | /* op_placement_info_table */ | |
11094 | ||
11095 | /* op_placement_info makes it easier to determine which | |
11096 | ops can go in which slots. */ | |
11097 | ||
11098 | static void | |
7fa3d080 | 11099 | init_op_placement_info_table (void) |
43cd72b9 BW |
11100 | { |
11101 | xtensa_isa isa = xtensa_default_isa; | |
11102 | xtensa_insnbuf ibuf = xtensa_insnbuf_alloc (isa); | |
11103 | xtensa_opcode opcode; | |
11104 | xtensa_format fmt; | |
11105 | int slot; | |
11106 | int num_opcodes = xtensa_isa_num_opcodes (isa); | |
11107 | ||
11108 | op_placement_table = (op_placement_info_table) | |
11109 | xmalloc (sizeof (op_placement_info) * num_opcodes); | |
9c2799c2 | 11110 | gas_assert (xtensa_isa_num_formats (isa) < MAX_FORMATS); |
43cd72b9 BW |
11111 | |
11112 | for (opcode = 0; opcode < num_opcodes; opcode++) | |
11113 | { | |
11114 | op_placement_info *opi = &op_placement_table[opcode]; | |
11115 | /* FIXME: Make tinsn allocation dynamic. */ | |
51add5c3 | 11116 | if (xtensa_opcode_num_operands (isa, opcode) > MAX_INSN_ARGS) |
43cd72b9 | 11117 | as_fatal (_("too many operands in instruction")); |
43cd72b9 BW |
11118 | opi->narrowest = XTENSA_UNDEFINED; |
11119 | opi->narrowest_size = 0x7F; | |
b2d179be | 11120 | opi->narrowest_slot = 0; |
43cd72b9 BW |
11121 | opi->formats = 0; |
11122 | opi->num_formats = 0; | |
11123 | opi->issuef = 0; | |
11124 | for (fmt = 0; fmt < xtensa_isa_num_formats (isa); fmt++) | |
11125 | { | |
11126 | opi->slots[fmt] = 0; | |
11127 | for (slot = 0; slot < xtensa_format_num_slots (isa, fmt); slot++) | |
11128 | { | |
11129 | if (xtensa_opcode_encode (isa, fmt, slot, ibuf, opcode) == 0) | |
11130 | { | |
11131 | int fmt_length = xtensa_format_length (isa, fmt); | |
11132 | opi->issuef++; | |
11133 | set_bit (fmt, opi->formats); | |
11134 | set_bit (slot, opi->slots[fmt]); | |
a02728c8 BW |
11135 | if (fmt_length < opi->narrowest_size |
11136 | || (fmt_length == opi->narrowest_size | |
11137 | && (xtensa_format_num_slots (isa, fmt) | |
11138 | < xtensa_format_num_slots (isa, | |
11139 | opi->narrowest)))) | |
43cd72b9 BW |
11140 | { |
11141 | opi->narrowest = fmt; | |
11142 | opi->narrowest_size = fmt_length; | |
b2d179be | 11143 | opi->narrowest_slot = slot; |
43cd72b9 | 11144 | } |
e0001a05 NC |
11145 | } |
11146 | } | |
43cd72b9 BW |
11147 | if (opi->formats) |
11148 | opi->num_formats++; | |
e0001a05 NC |
11149 | } |
11150 | } | |
43cd72b9 BW |
11151 | xtensa_insnbuf_free (isa, ibuf); |
11152 | } | |
11153 | ||
11154 | ||
11155 | bfd_boolean | |
7fa3d080 | 11156 | opcode_fits_format_slot (xtensa_opcode opcode, xtensa_format fmt, int slot) |
43cd72b9 BW |
11157 | { |
11158 | return bit_is_set (slot, op_placement_table[opcode].slots[fmt]); | |
11159 | } | |
11160 | ||
11161 | ||
11162 | /* If the opcode is available in a single slot format, return its size. */ | |
11163 | ||
7fa3d080 BW |
11164 | static int |
11165 | xg_get_single_size (xtensa_opcode opcode) | |
43cd72b9 | 11166 | { |
b2d179be | 11167 | return op_placement_table[opcode].narrowest_size; |
43cd72b9 BW |
11168 | } |
11169 | ||
11170 | ||
7fa3d080 BW |
11171 | static xtensa_format |
11172 | xg_get_single_format (xtensa_opcode opcode) | |
43cd72b9 | 11173 | { |
b2d179be BW |
11174 | return op_placement_table[opcode].narrowest; |
11175 | } | |
11176 | ||
11177 | ||
11178 | static int | |
11179 | xg_get_single_slot (xtensa_opcode opcode) | |
11180 | { | |
11181 | return op_placement_table[opcode].narrowest_slot; | |
e0001a05 NC |
11182 | } |
11183 | ||
11184 | \f | |
11185 | /* Instruction Stack Functions (from "xtensa-istack.h"). */ | |
11186 | ||
11187 | void | |
7fa3d080 | 11188 | istack_init (IStack *stack) |
e0001a05 NC |
11189 | { |
11190 | memset (stack, 0, sizeof (IStack)); | |
11191 | stack->ninsn = 0; | |
11192 | } | |
11193 | ||
11194 | ||
11195 | bfd_boolean | |
7fa3d080 | 11196 | istack_empty (IStack *stack) |
e0001a05 NC |
11197 | { |
11198 | return (stack->ninsn == 0); | |
11199 | } | |
11200 | ||
11201 | ||
11202 | bfd_boolean | |
7fa3d080 | 11203 | istack_full (IStack *stack) |
e0001a05 NC |
11204 | { |
11205 | return (stack->ninsn == MAX_ISTACK); | |
11206 | } | |
11207 | ||
11208 | ||
11209 | /* Return a pointer to the top IStack entry. | |
43cd72b9 | 11210 | It is an error to call this if istack_empty () is TRUE. */ |
e0001a05 NC |
11211 | |
11212 | TInsn * | |
7fa3d080 | 11213 | istack_top (IStack *stack) |
e0001a05 NC |
11214 | { |
11215 | int rec = stack->ninsn - 1; | |
9c2799c2 | 11216 | gas_assert (!istack_empty (stack)); |
e0001a05 NC |
11217 | return &stack->insn[rec]; |
11218 | } | |
11219 | ||
11220 | ||
11221 | /* Add a new TInsn to an IStack. | |
43cd72b9 | 11222 | It is an error to call this if istack_full () is TRUE. */ |
e0001a05 NC |
11223 | |
11224 | void | |
7fa3d080 | 11225 | istack_push (IStack *stack, TInsn *insn) |
e0001a05 NC |
11226 | { |
11227 | int rec = stack->ninsn; | |
9c2799c2 | 11228 | gas_assert (!istack_full (stack)); |
43cd72b9 | 11229 | stack->insn[rec] = *insn; |
e0001a05 NC |
11230 | stack->ninsn++; |
11231 | } | |
11232 | ||
11233 | ||
11234 | /* Clear space for the next TInsn on the IStack and return a pointer | |
43cd72b9 | 11235 | to it. It is an error to call this if istack_full () is TRUE. */ |
e0001a05 NC |
11236 | |
11237 | TInsn * | |
7fa3d080 | 11238 | istack_push_space (IStack *stack) |
e0001a05 NC |
11239 | { |
11240 | int rec = stack->ninsn; | |
11241 | TInsn *insn; | |
9c2799c2 | 11242 | gas_assert (!istack_full (stack)); |
e0001a05 | 11243 | insn = &stack->insn[rec]; |
60242db2 | 11244 | tinsn_init (insn); |
e0001a05 NC |
11245 | stack->ninsn++; |
11246 | return insn; | |
11247 | } | |
11248 | ||
11249 | ||
11250 | /* Remove the last pushed instruction. It is an error to call this if | |
43cd72b9 | 11251 | istack_empty () returns TRUE. */ |
e0001a05 NC |
11252 | |
11253 | void | |
7fa3d080 | 11254 | istack_pop (IStack *stack) |
e0001a05 NC |
11255 | { |
11256 | int rec = stack->ninsn - 1; | |
9c2799c2 | 11257 | gas_assert (!istack_empty (stack)); |
e0001a05 | 11258 | stack->ninsn--; |
60242db2 | 11259 | tinsn_init (&stack->insn[rec]); |
e0001a05 NC |
11260 | } |
11261 | ||
11262 | \f | |
11263 | /* TInsn functions. */ | |
11264 | ||
11265 | void | |
7fa3d080 | 11266 | tinsn_init (TInsn *dst) |
e0001a05 NC |
11267 | { |
11268 | memset (dst, 0, sizeof (TInsn)); | |
11269 | } | |
11270 | ||
11271 | ||
43cd72b9 | 11272 | /* Return TRUE if ANY of the operands in the insn are symbolic. */ |
e0001a05 NC |
11273 | |
11274 | static bfd_boolean | |
7fa3d080 | 11275 | tinsn_has_symbolic_operands (const TInsn *insn) |
e0001a05 NC |
11276 | { |
11277 | int i; | |
11278 | int n = insn->ntok; | |
11279 | ||
9c2799c2 | 11280 | gas_assert (insn->insn_type == ITYPE_INSN); |
e0001a05 NC |
11281 | |
11282 | for (i = 0; i < n; ++i) | |
11283 | { | |
11284 | switch (insn->tok[i].X_op) | |
11285 | { | |
11286 | case O_register: | |
11287 | case O_constant: | |
11288 | break; | |
11289 | default: | |
11290 | return TRUE; | |
11291 | } | |
11292 | } | |
11293 | return FALSE; | |
11294 | } | |
11295 | ||
11296 | ||
11297 | bfd_boolean | |
7fa3d080 | 11298 | tinsn_has_invalid_symbolic_operands (const TInsn *insn) |
e0001a05 | 11299 | { |
43cd72b9 | 11300 | xtensa_isa isa = xtensa_default_isa; |
e0001a05 NC |
11301 | int i; |
11302 | int n = insn->ntok; | |
11303 | ||
9c2799c2 | 11304 | gas_assert (insn->insn_type == ITYPE_INSN); |
e0001a05 NC |
11305 | |
11306 | for (i = 0; i < n; ++i) | |
11307 | { | |
11308 | switch (insn->tok[i].X_op) | |
11309 | { | |
11310 | case O_register: | |
11311 | case O_constant: | |
11312 | break; | |
43cd72b9 BW |
11313 | case O_big: |
11314 | case O_illegal: | |
11315 | case O_absent: | |
11316 | /* Errors for these types are caught later. */ | |
11317 | break; | |
11318 | case O_hi16: | |
11319 | case O_lo16: | |
e0001a05 | 11320 | default: |
43cd72b9 BW |
11321 | /* Symbolic immediates are only allowed on the last immediate |
11322 | operand. At this time, CONST16 is the only opcode where we | |
e7da6241 | 11323 | support non-PC-relative relocations. */ |
43cd72b9 BW |
11324 | if (i != get_relaxable_immed (insn->opcode) |
11325 | || (xtensa_operand_is_PCrelative (isa, insn->opcode, i) != 1 | |
11326 | && insn->opcode != xtensa_const16_opcode)) | |
11327 | { | |
431ad2d0 | 11328 | as_bad (_("invalid symbolic operand")); |
43cd72b9 BW |
11329 | return TRUE; |
11330 | } | |
e0001a05 NC |
11331 | } |
11332 | } | |
11333 | return FALSE; | |
11334 | } | |
11335 | ||
11336 | ||
11337 | /* For assembly code with complex expressions (e.g. subtraction), | |
11338 | we have to build them in the literal pool so that | |
11339 | their results are calculated correctly after relaxation. | |
11340 | The relaxation only handles expressions that | |
11341 | boil down to SYMBOL + OFFSET. */ | |
11342 | ||
11343 | static bfd_boolean | |
7fa3d080 | 11344 | tinsn_has_complex_operands (const TInsn *insn) |
e0001a05 NC |
11345 | { |
11346 | int i; | |
11347 | int n = insn->ntok; | |
9c2799c2 | 11348 | gas_assert (insn->insn_type == ITYPE_INSN); |
e0001a05 NC |
11349 | for (i = 0; i < n; ++i) |
11350 | { | |
11351 | switch (insn->tok[i].X_op) | |
11352 | { | |
11353 | case O_register: | |
11354 | case O_constant: | |
11355 | case O_symbol: | |
43cd72b9 BW |
11356 | case O_lo16: |
11357 | case O_hi16: | |
e0001a05 NC |
11358 | break; |
11359 | default: | |
11360 | return TRUE; | |
11361 | } | |
11362 | } | |
11363 | return FALSE; | |
11364 | } | |
11365 | ||
11366 | ||
b2d179be BW |
11367 | /* Encode a TInsn opcode and its constant operands into slotbuf. |
11368 | Return TRUE if there is a symbol in the immediate field. This | |
11369 | function assumes that: | |
11370 | 1) The number of operands are correct. | |
11371 | 2) The insn_type is ITYPE_INSN. | |
11372 | 3) The opcode can be encoded in the specified format and slot. | |
11373 | 4) Operands are either O_constant or O_symbol, and all constants fit. */ | |
43cd72b9 BW |
11374 | |
11375 | static bfd_boolean | |
7fa3d080 BW |
11376 | tinsn_to_slotbuf (xtensa_format fmt, |
11377 | int slot, | |
11378 | TInsn *tinsn, | |
11379 | xtensa_insnbuf slotbuf) | |
43cd72b9 BW |
11380 | { |
11381 | xtensa_isa isa = xtensa_default_isa; | |
11382 | xtensa_opcode opcode = tinsn->opcode; | |
11383 | bfd_boolean has_fixup = FALSE; | |
11384 | int noperands = xtensa_opcode_num_operands (isa, opcode); | |
11385 | int i; | |
11386 | ||
9c2799c2 | 11387 | gas_assert (tinsn->insn_type == ITYPE_INSN); |
43cd72b9 BW |
11388 | if (noperands != tinsn->ntok) |
11389 | as_fatal (_("operand number mismatch")); | |
11390 | ||
11391 | if (xtensa_opcode_encode (isa, fmt, slot, slotbuf, opcode)) | |
11392 | { | |
11393 | as_bad (_("cannot encode opcode \"%s\" in the given format \"%s\""), | |
11394 | xtensa_opcode_name (isa, opcode), xtensa_format_name (isa, fmt)); | |
11395 | return FALSE; | |
11396 | } | |
11397 | ||
11398 | for (i = 0; i < noperands; i++) | |
11399 | { | |
91d6fa6a | 11400 | expressionS *exp = &tinsn->tok[i]; |
d77b99c9 BW |
11401 | int rc; |
11402 | unsigned line; | |
43cd72b9 BW |
11403 | char *file_name; |
11404 | uint32 opnd_value; | |
11405 | ||
91d6fa6a | 11406 | switch (exp->X_op) |
43cd72b9 BW |
11407 | { |
11408 | case O_register: | |
11409 | if (xtensa_operand_is_visible (isa, opcode, i) == 0) | |
11410 | break; | |
11411 | /* The register number has already been checked in | |
11412 | expression_maybe_register, so we don't need to check here. */ | |
91d6fa6a | 11413 | opnd_value = exp->X_add_number; |
43cd72b9 BW |
11414 | (void) xtensa_operand_encode (isa, opcode, i, &opnd_value); |
11415 | rc = xtensa_operand_set_field (isa, opcode, i, fmt, slot, slotbuf, | |
11416 | opnd_value); | |
11417 | if (rc != 0) | |
11418 | as_warn (_("xtensa-isa failure: %s"), xtensa_isa_error_msg (isa)); | |
11419 | break; | |
11420 | ||
11421 | case O_constant: | |
11422 | if (xtensa_operand_is_visible (isa, opcode, i) == 0) | |
11423 | break; | |
11424 | as_where (&file_name, &line); | |
11425 | /* It is a constant and we called this function | |
11426 | then we have to try to fit it. */ | |
11427 | xtensa_insnbuf_set_operand (slotbuf, fmt, slot, opcode, i, | |
91d6fa6a | 11428 | exp->X_add_number, file_name, line); |
e0001a05 NC |
11429 | break; |
11430 | ||
e0001a05 NC |
11431 | default: |
11432 | has_fixup = TRUE; | |
11433 | break; | |
11434 | } | |
11435 | } | |
43cd72b9 | 11436 | |
e0001a05 NC |
11437 | return has_fixup; |
11438 | } | |
11439 | ||
11440 | ||
b2d179be BW |
11441 | /* Encode a single TInsn into an insnbuf. If the opcode can only be encoded |
11442 | into a multi-slot instruction, fill the other slots with NOPs. | |
11443 | Return TRUE if there is a symbol in the immediate field. See also the | |
11444 | assumptions listed for tinsn_to_slotbuf. */ | |
11445 | ||
11446 | static bfd_boolean | |
11447 | tinsn_to_insnbuf (TInsn *tinsn, xtensa_insnbuf insnbuf) | |
11448 | { | |
11449 | static xtensa_insnbuf slotbuf = 0; | |
11450 | static vliw_insn vinsn; | |
11451 | xtensa_isa isa = xtensa_default_isa; | |
11452 | bfd_boolean has_fixup = FALSE; | |
11453 | int i; | |
11454 | ||
11455 | if (!slotbuf) | |
11456 | { | |
11457 | slotbuf = xtensa_insnbuf_alloc (isa); | |
11458 | xg_init_vinsn (&vinsn); | |
11459 | } | |
11460 | ||
11461 | xg_clear_vinsn (&vinsn); | |
11462 | ||
11463 | bundle_tinsn (tinsn, &vinsn); | |
11464 | ||
11465 | xtensa_format_encode (isa, vinsn.format, insnbuf); | |
11466 | ||
11467 | for (i = 0; i < vinsn.num_slots; i++) | |
11468 | { | |
11469 | /* Only one slot may have a fix-up because the rest contains NOPs. */ | |
11470 | has_fixup |= | |
11471 | tinsn_to_slotbuf (vinsn.format, i, &vinsn.slots[i], vinsn.slotbuf[i]); | |
11472 | xtensa_format_set_slot (isa, vinsn.format, i, insnbuf, vinsn.slotbuf[i]); | |
11473 | } | |
11474 | ||
11475 | return has_fixup; | |
11476 | } | |
11477 | ||
11478 | ||
43cd72b9 | 11479 | /* Check the instruction arguments. Return TRUE on failure. */ |
e0001a05 | 11480 | |
7fa3d080 BW |
11481 | static bfd_boolean |
11482 | tinsn_check_arguments (const TInsn *insn) | |
e0001a05 NC |
11483 | { |
11484 | xtensa_isa isa = xtensa_default_isa; | |
11485 | xtensa_opcode opcode = insn->opcode; | |
6dc6b655 BW |
11486 | xtensa_regfile t1_regfile, t2_regfile; |
11487 | int t1_reg, t2_reg; | |
11488 | int t1_base_reg, t1_last_reg; | |
11489 | int t2_base_reg, t2_last_reg; | |
11490 | char t1_inout, t2_inout; | |
11491 | int i, j; | |
e0001a05 NC |
11492 | |
11493 | if (opcode == XTENSA_UNDEFINED) | |
11494 | { | |
11495 | as_bad (_("invalid opcode")); | |
11496 | return TRUE; | |
11497 | } | |
11498 | ||
43cd72b9 | 11499 | if (xtensa_opcode_num_operands (isa, opcode) > insn->ntok) |
e0001a05 NC |
11500 | { |
11501 | as_bad (_("too few operands")); | |
11502 | return TRUE; | |
11503 | } | |
11504 | ||
43cd72b9 | 11505 | if (xtensa_opcode_num_operands (isa, opcode) < insn->ntok) |
e0001a05 NC |
11506 | { |
11507 | as_bad (_("too many operands")); | |
11508 | return TRUE; | |
11509 | } | |
6dc6b655 BW |
11510 | |
11511 | /* Check registers. */ | |
11512 | for (j = 0; j < insn->ntok; j++) | |
11513 | { | |
11514 | if (xtensa_operand_is_register (isa, insn->opcode, j) != 1) | |
11515 | continue; | |
11516 | ||
11517 | t2_regfile = xtensa_operand_regfile (isa, insn->opcode, j); | |
11518 | t2_base_reg = insn->tok[j].X_add_number; | |
11519 | t2_last_reg | |
11520 | = t2_base_reg + xtensa_operand_num_regs (isa, insn->opcode, j); | |
11521 | ||
11522 | for (i = 0; i < insn->ntok; i++) | |
11523 | { | |
11524 | if (i == j) | |
11525 | continue; | |
11526 | ||
11527 | if (xtensa_operand_is_register (isa, insn->opcode, i) != 1) | |
11528 | continue; | |
11529 | ||
11530 | t1_regfile = xtensa_operand_regfile (isa, insn->opcode, i); | |
11531 | ||
11532 | if (t1_regfile != t2_regfile) | |
11533 | continue; | |
11534 | ||
11535 | t1_inout = xtensa_operand_inout (isa, insn->opcode, i); | |
11536 | t2_inout = xtensa_operand_inout (isa, insn->opcode, j); | |
11537 | ||
11538 | t1_base_reg = insn->tok[i].X_add_number; | |
11539 | t1_last_reg = (t1_base_reg | |
11540 | + xtensa_operand_num_regs (isa, insn->opcode, i)); | |
11541 | ||
11542 | for (t1_reg = t1_base_reg; t1_reg < t1_last_reg; t1_reg++) | |
11543 | { | |
11544 | for (t2_reg = t2_base_reg; t2_reg < t2_last_reg; t2_reg++) | |
11545 | { | |
11546 | if (t1_reg != t2_reg) | |
11547 | continue; | |
11548 | ||
11549 | if (t1_inout != 'i' && t2_inout != 'i') | |
11550 | { | |
11551 | as_bad (_("multiple writes to the same register")); | |
11552 | return TRUE; | |
11553 | } | |
11554 | } | |
11555 | } | |
11556 | } | |
11557 | } | |
e0001a05 NC |
11558 | return FALSE; |
11559 | } | |
11560 | ||
11561 | ||
11562 | /* Load an instruction from its encoded form. */ | |
11563 | ||
11564 | static void | |
7fa3d080 | 11565 | tinsn_from_chars (TInsn *tinsn, char *f, int slot) |
e0001a05 | 11566 | { |
43cd72b9 | 11567 | vliw_insn vinsn; |
e0001a05 | 11568 | |
43cd72b9 BW |
11569 | xg_init_vinsn (&vinsn); |
11570 | vinsn_from_chars (&vinsn, f); | |
11571 | ||
11572 | *tinsn = vinsn.slots[slot]; | |
11573 | xg_free_vinsn (&vinsn); | |
11574 | } | |
e0001a05 | 11575 | |
43cd72b9 BW |
11576 | |
11577 | static void | |
7fa3d080 BW |
11578 | tinsn_from_insnbuf (TInsn *tinsn, |
11579 | xtensa_insnbuf slotbuf, | |
11580 | xtensa_format fmt, | |
11581 | int slot) | |
43cd72b9 BW |
11582 | { |
11583 | int i; | |
11584 | xtensa_isa isa = xtensa_default_isa; | |
e0001a05 NC |
11585 | |
11586 | /* Find the immed. */ | |
43cd72b9 BW |
11587 | tinsn_init (tinsn); |
11588 | tinsn->insn_type = ITYPE_INSN; | |
11589 | tinsn->is_specific_opcode = FALSE; /* must not be specific */ | |
11590 | tinsn->opcode = xtensa_opcode_decode (isa, fmt, slot, slotbuf); | |
11591 | tinsn->ntok = xtensa_opcode_num_operands (isa, tinsn->opcode); | |
11592 | for (i = 0; i < tinsn->ntok; i++) | |
e0001a05 | 11593 | { |
43cd72b9 BW |
11594 | set_expr_const (&tinsn->tok[i], |
11595 | xtensa_insnbuf_get_operand (slotbuf, fmt, slot, | |
11596 | tinsn->opcode, i)); | |
e0001a05 NC |
11597 | } |
11598 | } | |
11599 | ||
11600 | ||
11601 | /* Read the value of the relaxable immed from the fr_symbol and fr_offset. */ | |
11602 | ||
11603 | static void | |
7fa3d080 | 11604 | tinsn_immed_from_frag (TInsn *tinsn, fragS *fragP, int slot) |
e0001a05 | 11605 | { |
43cd72b9 | 11606 | xtensa_opcode opcode = tinsn->opcode; |
e0001a05 NC |
11607 | int opnum; |
11608 | ||
43cd72b9 | 11609 | if (fragP->tc_frag_data.slot_symbols[slot]) |
e0001a05 NC |
11610 | { |
11611 | opnum = get_relaxable_immed (opcode); | |
9c2799c2 | 11612 | gas_assert (opnum >= 0); |
e7da6241 BW |
11613 | set_expr_symbol_offset (&tinsn->tok[opnum], |
11614 | fragP->tc_frag_data.slot_symbols[slot], | |
11615 | fragP->tc_frag_data.slot_offsets[slot]); | |
e0001a05 | 11616 | } |
19e8f41a | 11617 | tinsn->extra_arg = fragP->tc_frag_data.free_reg[slot]; |
e0001a05 NC |
11618 | } |
11619 | ||
11620 | ||
11621 | static int | |
7fa3d080 | 11622 | get_num_stack_text_bytes (IStack *istack) |
e0001a05 NC |
11623 | { |
11624 | int i; | |
11625 | int text_bytes = 0; | |
11626 | ||
11627 | for (i = 0; i < istack->ninsn; i++) | |
11628 | { | |
43cd72b9 BW |
11629 | TInsn *tinsn = &istack->insn[i]; |
11630 | if (tinsn->insn_type == ITYPE_INSN) | |
11631 | text_bytes += xg_get_single_size (tinsn->opcode); | |
e0001a05 NC |
11632 | } |
11633 | return text_bytes; | |
11634 | } | |
11635 | ||
11636 | ||
11637 | static int | |
7fa3d080 | 11638 | get_num_stack_literal_bytes (IStack *istack) |
e0001a05 NC |
11639 | { |
11640 | int i; | |
11641 | int lit_bytes = 0; | |
11642 | ||
11643 | for (i = 0; i < istack->ninsn; i++) | |
11644 | { | |
43cd72b9 BW |
11645 | TInsn *tinsn = &istack->insn[i]; |
11646 | if (tinsn->insn_type == ITYPE_LITERAL && tinsn->ntok == 1) | |
e0001a05 NC |
11647 | lit_bytes += 4; |
11648 | } | |
11649 | return lit_bytes; | |
11650 | } | |
11651 | ||
43cd72b9 BW |
11652 | \f |
11653 | /* vliw_insn functions. */ | |
11654 | ||
7fa3d080 BW |
11655 | static void |
11656 | xg_init_vinsn (vliw_insn *v) | |
43cd72b9 BW |
11657 | { |
11658 | int i; | |
11659 | xtensa_isa isa = xtensa_default_isa; | |
11660 | ||
11661 | xg_clear_vinsn (v); | |
11662 | ||
11663 | v->insnbuf = xtensa_insnbuf_alloc (isa); | |
11664 | if (v->insnbuf == NULL) | |
11665 | as_fatal (_("out of memory")); | |
11666 | ||
62af60e2 | 11667 | for (i = 0; i < config_max_slots; i++) |
43cd72b9 | 11668 | { |
43cd72b9 BW |
11669 | v->slotbuf[i] = xtensa_insnbuf_alloc (isa); |
11670 | if (v->slotbuf[i] == NULL) | |
11671 | as_fatal (_("out of memory")); | |
11672 | } | |
11673 | } | |
11674 | ||
11675 | ||
7fa3d080 BW |
11676 | static void |
11677 | xg_clear_vinsn (vliw_insn *v) | |
43cd72b9 BW |
11678 | { |
11679 | int i; | |
65738a7d | 11680 | |
62af60e2 SA |
11681 | memset (v, 0, offsetof (vliw_insn, slots) |
11682 | + sizeof(TInsn) * config_max_slots); | |
65738a7d | 11683 | |
43cd72b9 BW |
11684 | v->format = XTENSA_UNDEFINED; |
11685 | v->num_slots = 0; | |
11686 | v->inside_bundle = FALSE; | |
11687 | ||
11688 | if (xt_saved_debug_type != DEBUG_NONE) | |
11689 | debug_type = xt_saved_debug_type; | |
11690 | ||
62af60e2 | 11691 | for (i = 0; i < config_max_slots; i++) |
65738a7d | 11692 | v->slots[i].opcode = XTENSA_UNDEFINED; |
43cd72b9 BW |
11693 | } |
11694 | ||
11695 | ||
d8392fd9 SA |
11696 | static void |
11697 | xg_copy_vinsn (vliw_insn *dst, vliw_insn *src) | |
11698 | { | |
11699 | memcpy (dst, src, | |
11700 | offsetof(vliw_insn, slots) + src->num_slots * sizeof(TInsn)); | |
11701 | dst->insnbuf = src->insnbuf; | |
11702 | memcpy (dst->slotbuf, src->slotbuf, src->num_slots * sizeof(xtensa_insnbuf)); | |
11703 | } | |
11704 | ||
11705 | ||
7fa3d080 BW |
11706 | static bfd_boolean |
11707 | vinsn_has_specific_opcodes (vliw_insn *v) | |
43cd72b9 BW |
11708 | { |
11709 | int i; | |
c138bc38 | 11710 | |
43cd72b9 BW |
11711 | for (i = 0; i < v->num_slots; i++) |
11712 | { | |
11713 | if (v->slots[i].is_specific_opcode) | |
11714 | return TRUE; | |
11715 | } | |
11716 | return FALSE; | |
11717 | } | |
11718 | ||
11719 | ||
7fa3d080 BW |
11720 | static void |
11721 | xg_free_vinsn (vliw_insn *v) | |
43cd72b9 BW |
11722 | { |
11723 | int i; | |
11724 | xtensa_insnbuf_free (xtensa_default_isa, v->insnbuf); | |
62af60e2 | 11725 | for (i = 0; i < config_max_slots; i++) |
43cd72b9 BW |
11726 | xtensa_insnbuf_free (xtensa_default_isa, v->slotbuf[i]); |
11727 | } | |
11728 | ||
11729 | ||
e7da6241 BW |
11730 | /* Encode a vliw_insn into an insnbuf. Return TRUE if there are any symbolic |
11731 | operands. See also the assumptions listed for tinsn_to_slotbuf. */ | |
43cd72b9 BW |
11732 | |
11733 | static bfd_boolean | |
7fa3d080 BW |
11734 | vinsn_to_insnbuf (vliw_insn *vinsn, |
11735 | char *frag_offset, | |
11736 | fragS *fragP, | |
11737 | bfd_boolean record_fixup) | |
43cd72b9 BW |
11738 | { |
11739 | xtensa_isa isa = xtensa_default_isa; | |
11740 | xtensa_format fmt = vinsn->format; | |
11741 | xtensa_insnbuf insnbuf = vinsn->insnbuf; | |
11742 | int slot; | |
11743 | bfd_boolean has_fixup = FALSE; | |
11744 | ||
11745 | xtensa_format_encode (isa, fmt, insnbuf); | |
11746 | ||
11747 | for (slot = 0; slot < vinsn->num_slots; slot++) | |
11748 | { | |
11749 | TInsn *tinsn = &vinsn->slots[slot]; | |
19e8f41a | 11750 | expressionS *extra_arg = &tinsn->extra_arg; |
43cd72b9 BW |
11751 | bfd_boolean tinsn_has_fixup = |
11752 | tinsn_to_slotbuf (vinsn->format, slot, tinsn, | |
11753 | vinsn->slotbuf[slot]); | |
11754 | ||
11755 | xtensa_format_set_slot (isa, fmt, slot, | |
11756 | insnbuf, vinsn->slotbuf[slot]); | |
19e8f41a | 11757 | if (extra_arg->X_op != O_illegal && extra_arg->X_op != O_register) |
28dbbc02 BW |
11758 | { |
11759 | if (vinsn->num_slots != 1) | |
11760 | as_bad (_("TLS relocation not allowed in FLIX bundle")); | |
11761 | else if (record_fixup) | |
11762 | /* Instructions that generate TLS relocations should always be | |
11763 | relaxed in the front-end. If "record_fixup" is set, then this | |
11764 | function is being called during back-end relaxation, so flag | |
11765 | the unexpected behavior as an error. */ | |
11766 | as_bad (_("unexpected TLS relocation")); | |
11767 | else | |
11768 | fix_new (fragP, frag_offset - fragP->fr_literal, | |
11769 | xtensa_format_length (isa, fmt), | |
19e8f41a BW |
11770 | extra_arg->X_add_symbol, extra_arg->X_add_number, |
11771 | FALSE, map_operator_to_reloc (extra_arg->X_op, FALSE)); | |
28dbbc02 | 11772 | } |
e7da6241 | 11773 | if (tinsn_has_fixup) |
43cd72b9 BW |
11774 | { |
11775 | int i; | |
11776 | xtensa_opcode opcode = tinsn->opcode; | |
11777 | int noperands = xtensa_opcode_num_operands (isa, opcode); | |
11778 | has_fixup = TRUE; | |
11779 | ||
11780 | for (i = 0; i < noperands; i++) | |
11781 | { | |
91d6fa6a NC |
11782 | expressionS* exp = &tinsn->tok[i]; |
11783 | switch (exp->X_op) | |
43cd72b9 BW |
11784 | { |
11785 | case O_symbol: | |
11786 | case O_lo16: | |
11787 | case O_hi16: | |
11788 | if (get_relaxable_immed (opcode) == i) | |
11789 | { | |
e7da6241 BW |
11790 | /* Add a fix record for the instruction, except if this |
11791 | function is being called prior to relaxation, i.e., | |
11792 | if record_fixup is false, and the instruction might | |
11793 | be relaxed later. */ | |
11794 | if (record_fixup | |
11795 | || tinsn->is_specific_opcode | |
11796 | || !xg_is_relaxable_insn (tinsn, 0)) | |
43cd72b9 | 11797 | { |
91d6fa6a | 11798 | xg_add_opcode_fix (tinsn, i, fmt, slot, exp, fragP, |
e7da6241 | 11799 | frag_offset - fragP->fr_literal); |
43cd72b9 BW |
11800 | } |
11801 | else | |
11802 | { | |
91d6fa6a | 11803 | if (exp->X_op != O_symbol) |
e7da6241 | 11804 | as_bad (_("invalid operand")); |
91d6fa6a NC |
11805 | tinsn->symbol = exp->X_add_symbol; |
11806 | tinsn->offset = exp->X_add_number; | |
43cd72b9 BW |
11807 | } |
11808 | } | |
11809 | else | |
e7da6241 | 11810 | as_bad (_("symbolic operand not allowed")); |
43cd72b9 BW |
11811 | break; |
11812 | ||
11813 | case O_constant: | |
11814 | case O_register: | |
11815 | break; | |
11816 | ||
43cd72b9 | 11817 | default: |
e7da6241 | 11818 | as_bad (_("expression too complex")); |
43cd72b9 BW |
11819 | break; |
11820 | } | |
11821 | } | |
11822 | } | |
11823 | } | |
11824 | ||
11825 | return has_fixup; | |
11826 | } | |
11827 | ||
11828 | ||
11829 | static void | |
7fa3d080 | 11830 | vinsn_from_chars (vliw_insn *vinsn, char *f) |
43cd72b9 BW |
11831 | { |
11832 | static xtensa_insnbuf insnbuf = NULL; | |
11833 | static xtensa_insnbuf slotbuf = NULL; | |
11834 | int i; | |
11835 | xtensa_format fmt; | |
11836 | xtensa_isa isa = xtensa_default_isa; | |
11837 | ||
11838 | if (!insnbuf) | |
11839 | { | |
11840 | insnbuf = xtensa_insnbuf_alloc (isa); | |
11841 | slotbuf = xtensa_insnbuf_alloc (isa); | |
11842 | } | |
11843 | ||
d77b99c9 | 11844 | xtensa_insnbuf_from_chars (isa, insnbuf, (unsigned char *) f, 0); |
43cd72b9 BW |
11845 | fmt = xtensa_format_decode (isa, insnbuf); |
11846 | if (fmt == XTENSA_UNDEFINED) | |
11847 | as_fatal (_("cannot decode instruction format")); | |
11848 | vinsn->format = fmt; | |
11849 | vinsn->num_slots = xtensa_format_num_slots (isa, fmt); | |
11850 | ||
11851 | for (i = 0; i < vinsn->num_slots; i++) | |
11852 | { | |
11853 | TInsn *tinsn = &vinsn->slots[i]; | |
11854 | xtensa_format_get_slot (isa, fmt, i, insnbuf, slotbuf); | |
11855 | tinsn_from_insnbuf (tinsn, slotbuf, fmt, i); | |
11856 | } | |
11857 | } | |
11858 | ||
e0001a05 NC |
11859 | \f |
11860 | /* Expression utilities. */ | |
11861 | ||
43cd72b9 | 11862 | /* Return TRUE if the expression is an integer constant. */ |
e0001a05 NC |
11863 | |
11864 | bfd_boolean | |
7fa3d080 | 11865 | expr_is_const (const expressionS *s) |
e0001a05 NC |
11866 | { |
11867 | return (s->X_op == O_constant); | |
11868 | } | |
11869 | ||
11870 | ||
11871 | /* Get the expression constant. | |
43cd72b9 | 11872 | Calling this is illegal if expr_is_const () returns TRUE. */ |
e0001a05 NC |
11873 | |
11874 | offsetT | |
7fa3d080 | 11875 | get_expr_const (const expressionS *s) |
e0001a05 | 11876 | { |
9c2799c2 | 11877 | gas_assert (expr_is_const (s)); |
e0001a05 NC |
11878 | return s->X_add_number; |
11879 | } | |
11880 | ||
11881 | ||
11882 | /* Set the expression to a constant value. */ | |
11883 | ||
11884 | void | |
7fa3d080 | 11885 | set_expr_const (expressionS *s, offsetT val) |
e0001a05 NC |
11886 | { |
11887 | s->X_op = O_constant; | |
11888 | s->X_add_number = val; | |
11889 | s->X_add_symbol = NULL; | |
11890 | s->X_op_symbol = NULL; | |
11891 | } | |
11892 | ||
11893 | ||
43cd72b9 | 11894 | bfd_boolean |
7fa3d080 | 11895 | expr_is_register (const expressionS *s) |
43cd72b9 BW |
11896 | { |
11897 | return (s->X_op == O_register); | |
11898 | } | |
11899 | ||
11900 | ||
11901 | /* Get the expression constant. | |
11902 | Calling this is illegal if expr_is_const () returns TRUE. */ | |
11903 | ||
11904 | offsetT | |
7fa3d080 | 11905 | get_expr_register (const expressionS *s) |
43cd72b9 | 11906 | { |
9c2799c2 | 11907 | gas_assert (expr_is_register (s)); |
43cd72b9 BW |
11908 | return s->X_add_number; |
11909 | } | |
11910 | ||
11911 | ||
e0001a05 NC |
11912 | /* Set the expression to a symbol + constant offset. */ |
11913 | ||
11914 | void | |
7fa3d080 | 11915 | set_expr_symbol_offset (expressionS *s, symbolS *sym, offsetT offset) |
e0001a05 NC |
11916 | { |
11917 | s->X_op = O_symbol; | |
11918 | s->X_add_symbol = sym; | |
11919 | s->X_op_symbol = NULL; /* unused */ | |
11920 | s->X_add_number = offset; | |
11921 | } | |
11922 | ||
11923 | ||
43cd72b9 BW |
11924 | /* Return TRUE if the two expressions are equal. */ |
11925 | ||
e0001a05 | 11926 | bfd_boolean |
7fa3d080 | 11927 | expr_is_equal (expressionS *s1, expressionS *s2) |
e0001a05 NC |
11928 | { |
11929 | if (s1->X_op != s2->X_op) | |
11930 | return FALSE; | |
11931 | if (s1->X_add_symbol != s2->X_add_symbol) | |
11932 | return FALSE; | |
11933 | if (s1->X_op_symbol != s2->X_op_symbol) | |
11934 | return FALSE; | |
11935 | if (s1->X_add_number != s2->X_add_number) | |
11936 | return FALSE; | |
11937 | return TRUE; | |
11938 | } | |
11939 | ||
11940 | ||
11941 | static void | |
7fa3d080 | 11942 | copy_expr (expressionS *dst, const expressionS *src) |
e0001a05 NC |
11943 | { |
11944 | memcpy (dst, src, sizeof (expressionS)); | |
11945 | } | |
11946 | ||
11947 | \f | |
9456465c | 11948 | /* Support for the "--rename-section" option. */ |
e0001a05 NC |
11949 | |
11950 | struct rename_section_struct | |
11951 | { | |
11952 | char *old_name; | |
11953 | char *new_name; | |
11954 | struct rename_section_struct *next; | |
11955 | }; | |
11956 | ||
11957 | static struct rename_section_struct *section_rename; | |
11958 | ||
11959 | ||
9456465c BW |
11960 | /* Parse the string "oldname=new_name(:oldname2=new_name2)*" and add |
11961 | entries to the section_rename list. Note: Specifying multiple | |
11962 | renamings separated by colons is not documented and is retained only | |
11963 | for backward compatibility. */ | |
e0001a05 | 11964 | |
7fa3d080 BW |
11965 | static void |
11966 | build_section_rename (const char *arg) | |
e0001a05 | 11967 | { |
9456465c | 11968 | struct rename_section_struct *r; |
e0001a05 NC |
11969 | char *this_arg = NULL; |
11970 | char *next_arg = NULL; | |
11971 | ||
9456465c | 11972 | for (this_arg = xstrdup (arg); this_arg != NULL; this_arg = next_arg) |
e0001a05 | 11973 | { |
9456465c BW |
11974 | char *old_name, *new_name; |
11975 | ||
e0001a05 NC |
11976 | if (this_arg) |
11977 | { | |
11978 | next_arg = strchr (this_arg, ':'); | |
11979 | if (next_arg) | |
11980 | { | |
11981 | *next_arg = '\0'; | |
11982 | next_arg++; | |
11983 | } | |
11984 | } | |
e0001a05 | 11985 | |
9456465c BW |
11986 | old_name = this_arg; |
11987 | new_name = strchr (this_arg, '='); | |
e0001a05 | 11988 | |
9456465c BW |
11989 | if (*old_name == '\0') |
11990 | { | |
11991 | as_warn (_("ignoring extra '-rename-section' delimiter ':'")); | |
11992 | continue; | |
11993 | } | |
11994 | if (!new_name || new_name[1] == '\0') | |
11995 | { | |
11996 | as_warn (_("ignoring invalid '-rename-section' specification: '%s'"), | |
11997 | old_name); | |
11998 | continue; | |
11999 | } | |
12000 | *new_name = '\0'; | |
12001 | new_name++; | |
e0001a05 | 12002 | |
9456465c BW |
12003 | /* Check for invalid section renaming. */ |
12004 | for (r = section_rename; r != NULL; r = r->next) | |
12005 | { | |
12006 | if (strcmp (r->old_name, old_name) == 0) | |
12007 | as_bad (_("section %s renamed multiple times"), old_name); | |
12008 | if (strcmp (r->new_name, new_name) == 0) | |
12009 | as_bad (_("multiple sections remapped to output section %s"), | |
12010 | new_name); | |
12011 | } | |
e0001a05 | 12012 | |
9456465c BW |
12013 | /* Now add it. */ |
12014 | r = (struct rename_section_struct *) | |
12015 | xmalloc (sizeof (struct rename_section_struct)); | |
12016 | r->old_name = xstrdup (old_name); | |
12017 | r->new_name = xstrdup (new_name); | |
12018 | r->next = section_rename; | |
12019 | section_rename = r; | |
e0001a05 | 12020 | } |
e0001a05 NC |
12021 | } |
12022 | ||
12023 | ||
9456465c BW |
12024 | char * |
12025 | xtensa_section_rename (char *name) | |
e0001a05 NC |
12026 | { |
12027 | struct rename_section_struct *r = section_rename; | |
12028 | ||
12029 | for (r = section_rename; r != NULL; r = r->next) | |
43cd72b9 BW |
12030 | { |
12031 | if (strcmp (r->old_name, name) == 0) | |
12032 | return r->new_name; | |
12033 | } | |
e0001a05 NC |
12034 | |
12035 | return name; | |
12036 | } |