i386: Append ".p2align 4,0" to gas tests
[deliverable/binutils-gdb.git] / gas / write.c
CommitLineData
252b5132 1/* write.c - emit .o file
219d1afa 2 Copyright (C) 1986-2018 Free Software Foundation, Inc.
252b5132
RH
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
ec2655a6 8 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
9 any later version.
10
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
252b5132 20
33eaf5de 21/* This thing should be set up to do byte ordering correctly. But... */
252b5132
RH
22
23#include "as.h"
24#include "subsegs.h"
25#include "obstack.h"
26#include "output-file.h"
220e750f 27#include "dwarf2dbg.h"
0acf065b 28#include "compress-debug.h"
252b5132 29
252b5132 30#ifndef TC_FORCE_RELOCATION
a161fe53 31#define TC_FORCE_RELOCATION(FIX) \
ae6063d4 32 (generic_force_reloc (FIX))
252b5132
RH
33#endif
34
a161fe53
AM
35#ifndef TC_FORCE_RELOCATION_ABS
36#define TC_FORCE_RELOCATION_ABS(FIX) \
37 (TC_FORCE_RELOCATION (FIX))
38#endif
39
91cb9803 40#define GENERIC_FORCE_RELOCATION_LOCAL(FIX) \
a161fe53 41 (!(FIX)->fx_pcrel \
a161fe53 42 || TC_FORCE_RELOCATION (FIX))
91cb9803
AM
43#ifndef TC_FORCE_RELOCATION_LOCAL
44#define TC_FORCE_RELOCATION_LOCAL GENERIC_FORCE_RELOCATION_LOCAL
a161fe53
AM
45#endif
46
91cb9803
AM
47#define GENERIC_FORCE_RELOCATION_SUB_SAME(FIX, SEG) \
48 (!SEG_NORMAL (SEG))
a161fe53 49#ifndef TC_FORCE_RELOCATION_SUB_SAME
91cb9803 50#define TC_FORCE_RELOCATION_SUB_SAME GENERIC_FORCE_RELOCATION_SUB_SAME
a161fe53
AM
51#endif
52
9a97a5d7
AM
53#ifndef md_register_arithmetic
54# define md_register_arithmetic 1
55#endif
56
a161fe53 57#ifndef TC_FORCE_RELOCATION_SUB_ABS
9a97a5d7
AM
58#define TC_FORCE_RELOCATION_SUB_ABS(FIX, SEG) \
59 (!md_register_arithmetic && (SEG) == reg_section)
a161fe53
AM
60#endif
61
62#ifndef TC_FORCE_RELOCATION_SUB_LOCAL
63#ifdef DIFF_EXPR_OK
5db484ff
AM
64#define TC_FORCE_RELOCATION_SUB_LOCAL(FIX, SEG) \
65 (!md_register_arithmetic && (SEG) == reg_section)
a161fe53 66#else
5db484ff 67#define TC_FORCE_RELOCATION_SUB_LOCAL(FIX, SEG) 1
a161fe53
AM
68#endif
69#endif
70
71#ifndef TC_VALIDATE_FIX_SUB
72#ifdef UNDEFINED_DIFFERENCE_OK
73/* The PA needs this for PIC code generation. */
5db484ff
AM
74#define TC_VALIDATE_FIX_SUB(FIX, SEG) \
75 (md_register_arithmetic || (SEG) != reg_section)
a161fe53 76#else
5db484ff
AM
77#define TC_VALIDATE_FIX_SUB(FIX, SEG) \
78 ((md_register_arithmetic || (SEG) != reg_section) \
79 && ((FIX)->fx_r_type == BFD_RELOC_GPREL32 \
80 || (FIX)->fx_r_type == BFD_RELOC_GPREL16))
a161fe53 81#endif
252b5132
RH
82#endif
83
58a77e41
EC
84#ifndef TC_LINKRELAX_FIXUP
85#define TC_LINKRELAX_FIXUP(SEG) 1
86#endif
87
a161fe53
AM
88#ifndef MD_APPLY_SYM_VALUE
89#define MD_APPLY_SYM_VALUE(FIX) 1
8f36cd18 90#endif
ef99799a 91
87548816
NC
92#ifndef TC_FINALIZE_SYMS_BEFORE_SIZE_SEG
93#define TC_FINALIZE_SYMS_BEFORE_SIZE_SEG 1
94#endif
95
252b5132 96#ifndef MD_PCREL_FROM_SECTION
df44284e 97#define MD_PCREL_FROM_SECTION(FIX, SEC) md_pcrel_from (FIX)
252b5132
RH
98#endif
99
c9cd7160
L
100#ifndef TC_FAKE_LABEL
101#define TC_FAKE_LABEL(NAME) (strcmp ((NAME), FAKE_LABEL_NAME) == 0)
102#endif
103
d31f0f6d
AM
104/* Positive values of TC_FX_SIZE_SLACK allow a target to define
105 fixups that far past the end of a frag. Having such fixups
106 is of course most most likely a bug in setting fx_size correctly.
107 A negative value disables the fixup check entirely, which is
108 appropriate for something like the Renesas / SuperH SH_COUNT
109 reloc. */
110#ifndef TC_FX_SIZE_SLACK
111#define TC_FX_SIZE_SLACK(FIX) 0
112#endif
113
6386f3a7
AM
114/* Used to control final evaluation of expressions. */
115int finalize_syms = 0;
e46d99eb 116
252b5132 117int symbol_table_frozen;
a161fe53
AM
118
119symbolS *abs_section_sym;
120
26346241
AM
121/* Remember the value of dot when parsing expressions. */
122addressT dot_value;
123
8e723a10
CLT
124/* The frag that dot_value is based from. */
125fragS *dot_frag;
126
05e9452c
AM
127/* Relocs generated by ".reloc" pseudo. */
128struct reloc_list* reloc_list;
129
d7342424 130void print_fixup (fixS *);
252b5132 131
252b5132
RH
132/* We generally attach relocs to frag chains. However, after we have
133 chained these all together into a segment, any relocs we add after
134 that must be attached to a segment. This will include relocs added
135 in md_estimate_size_for_relax, for example. */
136static int frags_chained = 0;
252b5132
RH
137
138static int n_fixups;
139
df44284e 140#define RELOC_ENUM enum bfd_reloc_code_real
df44284e 141
efaf0ba4
NC
142/* Create a fixS in obstack 'notes'. */
143
252b5132 144static fixS *
d7342424
KH
145fix_new_internal (fragS *frag, /* Which frag? */
146 int where, /* Where in that frag? */
147 int size, /* 1, 2, or 4 usually. */
148 symbolS *add_symbol, /* X_add_symbol. */
149 symbolS *sub_symbol, /* X_op_symbol. */
150 offsetT offset, /* X_add_number. */
151 int pcrel, /* TRUE if PC-relative relocation. */
032fbb7a 152 RELOC_ENUM r_type /* Relocation type. */,
c865e45b 153 int at_beginning) /* Add to the start of the list? */
252b5132
RH
154{
155 fixS *fixP;
156
157 n_fixups++;
158
1e9cc1c2 159 fixP = (fixS *) obstack_alloc (&notes, sizeof (fixS));
252b5132
RH
160
161 fixP->fx_frag = frag;
162 fixP->fx_where = where;
163 fixP->fx_size = size;
164 /* We've made fx_size a narrow field; check that it's wide enough. */
165 if (fixP->fx_size != size)
166 {
167 as_bad (_("field fx_size too small to hold %d"), size);
168 abort ();
169 }
170 fixP->fx_addsy = add_symbol;
171 fixP->fx_subsy = sub_symbol;
172 fixP->fx_offset = offset;
26346241 173 fixP->fx_dot_value = dot_value;
8e723a10 174 fixP->fx_dot_frag = dot_frag;
252b5132 175 fixP->fx_pcrel = pcrel;
252b5132 176 fixP->fx_r_type = r_type;
252b5132
RH
177 fixP->fx_im_disp = 0;
178 fixP->fx_pcrel_adjust = 0;
179 fixP->fx_bit_fixP = 0;
180 fixP->fx_addnumber = 0;
181 fixP->fx_tcbit = 0;
20ee54e8 182 fixP->fx_tcbit2 = 0;
252b5132
RH
183 fixP->fx_done = 0;
184 fixP->fx_no_overflow = 0;
185 fixP->fx_signed = 0;
186
187#ifdef USING_CGEN
188 fixP->fx_cgen.insn = NULL;
189 fixP->fx_cgen.opinfo = 0;
190#endif
191
192#ifdef TC_FIX_TYPE
efaf0ba4 193 TC_INIT_FIX_DATA (fixP);
252b5132
RH
194#endif
195
3b4dbbbf 196 fixP->fx_file = as_where (&fixP->fx_line);
252b5132 197
252b5132
RH
198 {
199
252b5132
RH
200 fixS **seg_fix_rootP = (frags_chained
201 ? &seg_info (now_seg)->fix_root
202 : &frchain_now->fix_root);
203 fixS **seg_fix_tailP = (frags_chained
204 ? &seg_info (now_seg)->fix_tail
205 : &frchain_now->fix_tail);
252b5132 206
c865e45b
RS
207 if (at_beginning)
208 {
209 fixP->fx_next = *seg_fix_rootP;
210 *seg_fix_rootP = fixP;
211 if (fixP->fx_next == NULL)
212 *seg_fix_tailP = fixP;
213 }
252b5132 214 else
c865e45b
RS
215 {
216 fixP->fx_next = NULL;
217 if (*seg_fix_tailP)
218 (*seg_fix_tailP)->fx_next = fixP;
219 else
220 *seg_fix_rootP = fixP;
221 *seg_fix_tailP = fixP;
222 }
252b5132
RH
223 }
224
225 return fixP;
226}
227
228/* Create a fixup relative to a symbol (plus a constant). */
229
230fixS *
d7342424
KH
231fix_new (fragS *frag, /* Which frag? */
232 int where, /* Where in that frag? */
233 int size, /* 1, 2, or 4 usually. */
234 symbolS *add_symbol, /* X_add_symbol. */
235 offsetT offset, /* X_add_number. */
236 int pcrel, /* TRUE if PC-relative relocation. */
237 RELOC_ENUM r_type /* Relocation type. */)
252b5132
RH
238{
239 return fix_new_internal (frag, where, size, add_symbol,
c865e45b 240 (symbolS *) NULL, offset, pcrel, r_type, FALSE);
252b5132
RH
241}
242
243/* Create a fixup for an expression. Currently we only support fixups
244 for difference expressions. That is itself more than most object
245 file formats support anyhow. */
246
247fixS *
d7342424
KH
248fix_new_exp (fragS *frag, /* Which frag? */
249 int where, /* Where in that frag? */
250 int size, /* 1, 2, or 4 usually. */
251 expressionS *exp, /* Expression. */
252 int pcrel, /* TRUE if PC-relative relocation. */
253 RELOC_ENUM r_type /* Relocation type. */)
252b5132
RH
254{
255 symbolS *add = NULL;
256 symbolS *sub = NULL;
257 offsetT off = 0;
258
259 switch (exp->X_op)
260 {
261 case O_absent:
262 break;
263
37006e43
NC
264 case O_register:
265 as_bad (_("register value used as expression"));
266 break;
267
252b5132
RH
268 case O_add:
269 /* This comes up when _GLOBAL_OFFSET_TABLE_+(.-L0) is read, if
270 the difference expression cannot immediately be reduced. */
271 {
272 symbolS *stmp = make_expr_symbol (exp);
58a77e41 273
252b5132
RH
274 exp->X_op = O_symbol;
275 exp->X_op_symbol = 0;
276 exp->X_add_symbol = stmp;
277 exp->X_add_number = 0;
58a77e41 278
252b5132
RH
279 return fix_new_exp (frag, where, size, exp, pcrel, r_type);
280 }
281
282 case O_symbol_rva:
283 add = exp->X_add_symbol;
284 off = exp->X_add_number;
252b5132 285 r_type = BFD_RELOC_RVA;
252b5132
RH
286 break;
287
288 case O_uminus:
289 sub = exp->X_add_symbol;
290 off = exp->X_add_number;
291 break;
292
293 case O_subtract:
294 sub = exp->X_op_symbol;
295 /* Fall through. */
296 case O_symbol:
297 add = exp->X_add_symbol;
efaf0ba4 298 /* Fall through. */
252b5132
RH
299 case O_constant:
300 off = exp->X_add_number;
301 break;
302
303 default:
304 add = make_expr_symbol (exp);
305 break;
306 }
307
c865e45b
RS
308 return fix_new_internal (frag, where, size, add, sub, off, pcrel,
309 r_type, FALSE);
310}
311
312/* Create a fixup at the beginning of FRAG. The arguments are the same
313 as for fix_new, except that WHERE is implicitly 0. */
314
315fixS *
316fix_at_start (fragS *frag, int size, symbolS *add_symbol,
317 offsetT offset, int pcrel, RELOC_ENUM r_type)
318{
319 return fix_new_internal (frag, 0, size, add_symbol,
320 (symbolS *) NULL, offset, pcrel, r_type, TRUE);
252b5132
RH
321}
322
ae6063d4
AM
323/* Generic function to determine whether a fixup requires a relocation. */
324int
d7342424 325generic_force_reloc (fixS *fix)
ae6063d4 326{
ae6063d4
AM
327 if (fix->fx_r_type == BFD_RELOC_VTABLE_INHERIT
328 || fix->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
329 return 1;
7be1c489 330
61e192bf
NC
331 if (fix->fx_addsy == NULL)
332 return 0;
333
ae6063d4
AM
334 return S_FORCE_RELOC (fix->fx_addsy, fix->fx_subsy == NULL);
335}
336
252b5132
RH
337/* Append a string onto another string, bumping the pointer along. */
338void
d7342424 339append (char **charPP, char *fromP, unsigned long length)
252b5132 340{
efaf0ba4 341 /* Don't trust memcpy() of 0 chars. */
252b5132
RH
342 if (length == 0)
343 return;
344
345 memcpy (*charPP, fromP, length);
346 *charPP += length;
347}
348
efaf0ba4
NC
349/* This routine records the largest alignment seen for each segment.
350 If the beginning of the segment is aligned on the worst-case
351 boundary, all of the other alignments within it will work. At
352 least one object format really uses this info. */
353
252b5132 354void
d7342424
KH
355record_alignment (/* Segment to which alignment pertains. */
356 segT seg,
357 /* Alignment, as a power of 2 (e.g., 1 => 2-byte
358 boundary, 2 => 4-byte boundary, etc.) */
9136aa49 359 unsigned int align)
252b5132
RH
360{
361 if (seg == absolute_section)
362 return;
7be1c489 363
9136aa49 364 if (align > bfd_get_section_alignment (stdoutput, seg))
252b5132 365 bfd_set_section_alignment (stdoutput, seg, align);
252b5132
RH
366}
367
0a9ef439 368int
d7342424 369get_recorded_alignment (segT seg)
0a9ef439
RH
370{
371 if (seg == absolute_section)
372 return 0;
7be1c489 373
0a9ef439 374 return bfd_get_section_alignment (stdoutput, seg);
0a9ef439
RH
375}
376
252b5132
RH
377/* Reset the section indices after removing the gas created sections. */
378
379static void
e7ff5c73 380renumber_sections (bfd *abfd ATTRIBUTE_UNUSED, asection *sec, void *countparg)
252b5132
RH
381{
382 int *countp = (int *) countparg;
383
384 sec->index = *countp;
385 ++*countp;
386}
387
252b5132 388static fragS *
d7342424 389chain_frchains_together_1 (segT section, struct frchain *frchp)
252b5132
RH
390{
391 fragS dummy, *prev_frag = &dummy;
252b5132 392 fixS fix_dummy, *prev_fix = &fix_dummy;
252b5132 393
c9049d30 394 for (; frchp; frchp = frchp->frch_next)
252b5132
RH
395 {
396 prev_frag->fr_next = frchp->frch_root;
397 prev_frag = frchp->frch_last;
9c2799c2 398 gas_assert (prev_frag->fr_type != 0);
252b5132
RH
399 if (frchp->fix_root != (fixS *) NULL)
400 {
401 if (seg_info (section)->fix_root == (fixS *) NULL)
402 seg_info (section)->fix_root = frchp->fix_root;
403 prev_fix->fx_next = frchp->fix_root;
404 seg_info (section)->fix_tail = frchp->fix_tail;
405 prev_fix = frchp->fix_tail;
406 }
252b5132 407 }
4fc0b46e
AM
408 gas_assert (prev_frag != &dummy
409 && prev_frag->fr_type != 0);
252b5132
RH
410 prev_frag->fr_next = 0;
411 return prev_frag;
412}
413
252b5132 414static void
d7342424
KH
415chain_frchains_together (bfd *abfd ATTRIBUTE_UNUSED,
416 segT section,
e7ff5c73 417 void *xxx ATTRIBUTE_UNUSED)
252b5132
RH
418{
419 segment_info_type *info;
420
421 /* BFD may have introduced its own sections without using
422 subseg_new, so it is possible that seg_info is NULL. */
423 info = seg_info (section);
424 if (info != (segment_info_type *) NULL)
efaf0ba4
NC
425 info->frchainP->frch_last
426 = chain_frchains_together_1 (section, info->frchainP);
252b5132
RH
427
428 /* Now that we've chained the frags together, we must add new fixups
429 to the segment, not to the frag chain. */
430 frags_chained = 1;
431}
432
252b5132 433static void
d7342424 434cvt_frag_to_fill (segT sec ATTRIBUTE_UNUSED, fragS *fragP)
252b5132
RH
435{
436 switch (fragP->fr_type)
437 {
62a02d25
L
438 case rs_space_nop:
439 goto skip_align;
252b5132
RH
440 case rs_align:
441 case rs_align_code:
0a9ef439 442 case rs_align_test:
252b5132
RH
443 case rs_org:
444 case rs_space:
445#ifdef HANDLE_ALIGN
446 HANDLE_ALIGN (fragP);
447#endif
62a02d25 448skip_align:
252b5132
RH
449 know (fragP->fr_next != NULL);
450 fragP->fr_offset = (fragP->fr_next->fr_address
451 - fragP->fr_address
452 - fragP->fr_fix) / fragP->fr_var;
453 if (fragP->fr_offset < 0)
454 {
14ad458a 455 as_bad_where (fragP->fr_file, fragP->fr_line,
8f065d3b 456 _("attempt to .org/.space/.nops backwards? (%ld)"),
14ad458a 457 (long) fragP->fr_offset);
3f3cdb03 458 fragP->fr_offset = 0;
252b5132 459 }
62a02d25
L
460 if (fragP->fr_type == rs_space_nop)
461 fragP->fr_type = rs_fill_nop;
462 else
463 fragP->fr_type = rs_fill;
252b5132
RH
464 break;
465
466 case rs_fill:
62a02d25 467 case rs_fill_nop:
252b5132
RH
468 break;
469
470 case rs_leb128:
471 {
472 valueT value = S_GET_VALUE (fragP->fr_symbol);
473 int size;
474
ba8826a8
AO
475 if (!S_IS_DEFINED (fragP->fr_symbol))
476 {
477 as_bad_where (fragP->fr_file, fragP->fr_line,
478 _("leb128 operand is an undefined symbol: %s"),
479 S_GET_NAME (fragP->fr_symbol));
480 }
481
252b5132
RH
482 size = output_leb128 (fragP->fr_literal + fragP->fr_fix, value,
483 fragP->fr_subtype);
484
485 fragP->fr_fix += size;
486 fragP->fr_type = rs_fill;
487 fragP->fr_var = 0;
488 fragP->fr_offset = 0;
489 fragP->fr_symbol = NULL;
490 }
491 break;
492
493 case rs_cfa:
494 eh_frame_convert_frag (fragP);
495 break;
496
220e750f
RH
497 case rs_dwarf2dbg:
498 dwarf2dbg_convert_frag (fragP);
499 break;
500
252b5132 501 case rs_machine_dependent:
252b5132 502 md_convert_frag (stdoutput, sec, fragP);
252b5132 503
9c2799c2 504 gas_assert (fragP->fr_next == NULL
252b5132
RH
505 || ((offsetT) (fragP->fr_next->fr_address - fragP->fr_address)
506 == fragP->fr_fix));
507
efaf0ba4
NC
508 /* After md_convert_frag, we make the frag into a ".space 0".
509 md_convert_frag() should set up any fixSs and constants
510 required. */
252b5132
RH
511 frag_wane (fragP);
512 break;
513
514#ifndef WORKING_DOT_WORD
515 case rs_broken_word:
516 {
517 struct broken_word *lie;
518
519 if (fragP->fr_subtype)
520 {
521 fragP->fr_fix += md_short_jump_size;
522 for (lie = (struct broken_word *) (fragP->fr_symbol);
523 lie && lie->dispfrag == fragP;
524 lie = lie->next_broken_word)
525 if (lie->added == 1)
526 fragP->fr_fix += md_long_jump_size;
527 }
528 frag_wane (fragP);
529 }
530 break;
531#endif
532
533 default:
534 BAD_CASE (fragP->fr_type);
535 break;
536 }
09b935ac
AM
537#ifdef md_frag_check
538 md_frag_check (fragP);
539#endif
252b5132
RH
540}
541
32638454
AM
542struct relax_seg_info
543{
544 int pass;
545 int changed;
546};
d7342424 547
252b5132 548static void
32638454 549relax_seg (bfd *abfd ATTRIBUTE_UNUSED, asection *sec, void *xxx)
e46d99eb
AM
550{
551 segment_info_type *seginfo = seg_info (sec);
32638454 552 struct relax_seg_info *info = (struct relax_seg_info *) xxx;
e46d99eb
AM
553
554 if (seginfo && seginfo->frchainP
32638454
AM
555 && relax_segment (seginfo->frchainP->frch_root, sec, info->pass))
556 info->changed = 1;
e46d99eb
AM
557}
558
e46d99eb 559static void
e7ff5c73 560size_seg (bfd *abfd, asection *sec, void *xxx ATTRIBUTE_UNUSED)
252b5132
RH
561{
562 flagword flags;
563 fragS *fragp;
564 segment_info_type *seginfo;
565 int x;
566 valueT size, newsize;
567
568 subseg_change (sec, 0);
569
252b5132
RH
570 seginfo = seg_info (sec);
571 if (seginfo && seginfo->frchainP)
572 {
252b5132
RH
573 for (fragp = seginfo->frchainP->frch_root; fragp; fragp = fragp->fr_next)
574 cvt_frag_to_fill (sec, fragp);
575 for (fragp = seginfo->frchainP->frch_root;
576 fragp->fr_next;
577 fragp = fragp->fr_next)
efaf0ba4
NC
578 /* Walk to last elt. */
579 ;
252b5132
RH
580 size = fragp->fr_address + fragp->fr_fix;
581 }
582 else
583 size = 0;
584
e46d99eb 585 flags = bfd_get_section_flags (abfd, sec);
f3d2b04b
KT
586 if (size == 0 && bfd_get_section_size (sec) != 0 &&
587 (flags & SEC_HAS_CONTENTS) != 0)
588 return;
e46d99eb 589
252b5132
RH
590 if (size > 0 && ! seginfo->bss)
591 flags |= SEC_HAS_CONTENTS;
592
e5435dec 593 flags &= ~SEC_RELOC;
252b5132 594 x = bfd_set_section_flags (abfd, sec, flags);
9c2799c2 595 gas_assert (x);
252b5132 596
2edb36e7
NC
597 /* If permitted, allow the backend to pad out the section
598 to some alignment boundary. */
599 if (do_not_pad_sections_to_alignment)
600 newsize = size;
601 else
602 newsize = md_section_align (sec, size);
252b5132 603 x = bfd_set_section_size (abfd, sec, newsize);
9c2799c2 604 gas_assert (x);
252b5132
RH
605
606 /* If the size had to be rounded up, add some padding in the last
607 non-empty frag. */
9c2799c2 608 gas_assert (newsize >= size);
252b5132
RH
609 if (size != newsize)
610 {
611 fragS *last = seginfo->frchainP->frch_last;
612 fragp = seginfo->frchainP->frch_root;
613 while (fragp->fr_next != last)
614 fragp = fragp->fr_next;
615 last->fr_address = size;
18e1d487
AM
616 if ((newsize - size) % fragp->fr_var == 0)
617 fragp->fr_offset += (newsize - size) / fragp->fr_var;
618 else
619 /* If we hit this abort, it's likely due to subsegs_finish not
620 providing sufficient alignment on the last frag, and the
621 machine dependent code using alignment frags with fr_var
622 greater than 1. */
623 abort ();
252b5132
RH
624 }
625
626#ifdef tc_frob_section
627 tc_frob_section (sec);
628#endif
629#ifdef obj_frob_section
630 obj_frob_section (sec);
631#endif
632}
633
634#ifdef DEBUG2
635static void
988392e2 636dump_section_relocs (bfd *abfd ATTRIBUTE_UNUSED, asection *sec, FILE *stream)
252b5132 637{
252b5132
RH
638 segment_info_type *seginfo = seg_info (sec);
639 fixS *fixp = seginfo->fix_root;
640
641 if (!fixp)
642 return;
643
644 fprintf (stream, "sec %s relocs:\n", sec->name);
645 while (fixp)
646 {
647 symbolS *s = fixp->fx_addsy;
e723ef7c
ILT
648
649 fprintf (stream, " %08lx: type %d ", (unsigned long) fixp,
650 (int) fixp->fx_r_type);
651 if (s == NULL)
652 fprintf (stream, "no sym\n");
653 else
252b5132 654 {
e723ef7c
ILT
655 print_symbol_value_1 (stream, s);
656 fprintf (stream, "\n");
252b5132 657 }
252b5132
RH
658 fixp = fixp->fx_next;
659 }
660}
661#else
662#define dump_section_relocs(ABFD,SEC,STREAM) ((void) 0)
663#endif
664
665#ifndef EMIT_SECTION_SYMBOLS
666#define EMIT_SECTION_SYMBOLS 1
667#endif
668
05e9452c
AM
669/* Resolve U.A.OFFSET_SYM and U.A.SYM fields of RELOC_LIST entries,
670 and check for validity. Convert RELOC_LIST from using U.A fields
671 to U.B fields. */
672static void
673resolve_reloc_expr_symbols (void)
674{
080f9e4f 675 bfd_vma addr_mask = 1;
05e9452c
AM
676 struct reloc_list *r;
677
080f9e4f
MR
678 /* Avoid a shift by the width of type. */
679 addr_mask <<= bfd_arch_bits_per_address (stdoutput) - 1;
680 addr_mask <<= 1;
681 addr_mask -= 1;
682
05e9452c
AM
683 for (r = reloc_list; r; r = r->next)
684 {
080f9e4f 685 reloc_howto_type *howto = r->u.a.howto;
05e9452c
AM
686 expressionS *symval;
687 symbolS *sym;
688 bfd_vma offset, addend;
689 asection *sec;
05e9452c
AM
690
691 resolve_symbol_value (r->u.a.offset_sym);
692 symval = symbol_get_value_expression (r->u.a.offset_sym);
693
694 offset = 0;
695 sym = NULL;
696 if (symval->X_op == O_constant)
697 sym = r->u.a.offset_sym;
698 else if (symval->X_op == O_symbol)
699 {
700 sym = symval->X_add_symbol;
701 offset = symval->X_add_number;
702 symval = symbol_get_value_expression (symval->X_add_symbol);
703 }
704 if (sym == NULL
705 || symval->X_op != O_constant
706 || (sec = S_GET_SEGMENT (sym)) == NULL
707 || !SEG_NORMAL (sec))
708 {
709 as_bad_where (r->file, r->line, _("invalid offset expression"));
710 sec = NULL;
711 }
712 else
713 offset += S_GET_VALUE (sym);
714
715 sym = NULL;
716 addend = r->u.a.addend;
717 if (r->u.a.sym != NULL)
718 {
719 resolve_symbol_value (r->u.a.sym);
720 symval = symbol_get_value_expression (r->u.a.sym);
721 if (symval->X_op == O_constant)
722 sym = r->u.a.sym;
723 else if (symval->X_op == O_symbol)
724 {
725 sym = symval->X_add_symbol;
726 addend += symval->X_add_number;
727 symval = symbol_get_value_expression (symval->X_add_symbol);
728 }
729 if (symval->X_op != O_constant)
730 {
731 as_bad_where (r->file, r->line, _("invalid reloc expression"));
732 sec = NULL;
733 }
2578f2f3 734 else if (sym != NULL && sec != NULL)
7230378d 735 {
080f9e4f
MR
736 /* Convert relocs against local symbols to refer to the
737 corresponding section symbol plus offset instead. Keep
738 PC-relative relocs of the REL variety intact though to
739 prevent the offset from overflowing the relocated field,
740 unless it has enough bits to cover the whole address
741 space. */
742 if (S_IS_LOCAL (sym) && !symbol_section_p (sym)
d6101ac2
MR
743 && (sec->use_rela_p
744 || (howto->partial_inplace
745 && (!howto->pc_relative
746 || howto->src_mask == addr_mask))))
7230378d
AM
747 {
748 asection *symsec = S_GET_SEGMENT (sym);
749 if (!(((symsec->flags & SEC_MERGE) != 0
750 && addend != 0)
751 || (symsec->flags & SEC_THREAD_LOCAL) != 0))
752 {
753 addend += S_GET_VALUE (sym);
754 sym = section_symbol (symsec);
755 }
756 }
757 symbol_mark_used_in_reloc (sym);
758 }
05e9452c
AM
759 }
760 if (sym == NULL)
761 {
762 if (abs_section_sym == NULL)
763 abs_section_sym = section_symbol (absolute_section);
764 sym = abs_section_sym;
765 }
766
05e9452c
AM
767 r->u.b.sec = sec;
768 r->u.b.s = symbol_get_bfdsym (sym);
769 r->u.b.r.sym_ptr_ptr = &r->u.b.s;
770 r->u.b.r.address = offset;
771 r->u.b.r.addend = addend;
772 r->u.b.r.howto = howto;
773 }
774}
775
df44284e
AM
776/* This pass over fixups decides whether symbols can be replaced with
777 section symbols. */
778
252b5132 779static void
d7342424
KH
780adjust_reloc_syms (bfd *abfd ATTRIBUTE_UNUSED,
781 asection *sec,
e7ff5c73 782 void *xxx ATTRIBUTE_UNUSED)
252b5132
RH
783{
784 segment_info_type *seginfo = seg_info (sec);
785 fixS *fixp;
786
787 if (seginfo == NULL)
788 return;
789
790 dump_section_relocs (abfd, sec, stderr);
791
792 for (fixp = seginfo->fix_root; fixp; fixp = fixp->fx_next)
793 if (fixp->fx_done)
efaf0ba4
NC
794 /* Ignore it. */
795 ;
252b5132
RH
796 else if (fixp->fx_addsy)
797 {
798 symbolS *sym;
799 asection *symsec;
800
801#ifdef DEBUG5
802 fprintf (stderr, "\n\nadjusting fixup:\n");
803 print_fixup (fixp);
804#endif
805
806 sym = fixp->fx_addsy;
807
808 /* All symbols should have already been resolved at this
809 point. It is possible to see unresolved expression
810 symbols, though, since they are not in the regular symbol
811 table. */
df44284e 812 resolve_symbol_value (sym);
efaf0ba4 813
49309057 814 if (fixp->fx_subsy != NULL)
6386f3a7 815 resolve_symbol_value (fixp->fx_subsy);
252b5132 816
60938e80
L
817 /* If this symbol is equated to an undefined or common symbol,
818 convert the fixup to being against that symbol. */
b4b24b79
AM
819 while (symbol_equated_reloc_p (sym)
820 || S_IS_WEAKREFR (sym))
252b5132 821 {
b4b24b79
AM
822 symbolS *newsym = symbol_get_value_expression (sym)->X_add_symbol;
823 if (sym == newsym)
824 break;
49309057 825 fixp->fx_offset += symbol_get_value_expression (sym)->X_add_number;
b4b24b79
AM
826 fixp->fx_addsy = newsym;
827 sym = newsym;
252b5132
RH
828 }
829
df44284e 830 if (symbol_mri_common_p (sym))
252b5132 831 {
b4b24b79
AM
832 fixp->fx_offset += S_GET_VALUE (sym);
833 fixp->fx_addsy = symbol_get_value_expression (sym)->X_add_symbol;
df44284e 834 continue;
252b5132
RH
835 }
836
a161fe53
AM
837 /* If the symbol is undefined, common, weak, or global (ELF
838 shared libs), we can't replace it with the section symbol. */
ae6063d4 839 if (S_FORCE_RELOC (fixp->fx_addsy, 1))
a161fe53
AM
840 continue;
841
842 /* Is there some other (target cpu dependent) reason we can't adjust
843 this one? (E.g. relocations involving function addresses on
844 the PA. */
845#ifdef tc_fix_adjustable
846 if (! tc_fix_adjustable (fixp))
847 continue;
848#endif
849
850 /* Since we're reducing to section symbols, don't attempt to reduce
851 anything that's already using one. */
852 if (symbol_section_p (sym))
853 continue;
854
252b5132 855 symsec = S_GET_SEGMENT (sym);
252b5132
RH
856 if (symsec == NULL)
857 abort ();
efaf0ba4 858
a841bdf5
AM
859 if (bfd_is_abs_section (symsec)
860 || symsec == reg_section)
252b5132 861 {
a161fe53 862 /* The fixup_segment routine normally will not use this
b4b24b79 863 symbol in a relocation. */
df44284e 864 continue;
252b5132
RH
865 }
866
7565ed77 867 /* Don't try to reduce relocs which refer to non-local symbols
b4b24b79
AM
868 in .linkonce sections. It can lead to confusion when a
869 debugging section refers to a .linkonce section. I hope
870 this will always be correct. */
7565ed77 871 if (symsec != sec && ! S_IS_LOCAL (sym))
252b5132 872 {
a161fe53
AM
873 if ((symsec->flags & SEC_LINK_ONCE) != 0
874 || (IS_ELF
875 /* The GNU toolchain uses an extension for ELF: a
876 section beginning with the magic string
877 .gnu.linkonce is a linkonce section. */
878 && strncmp (segment_name (symsec), ".gnu.linkonce",
879 sizeof ".gnu.linkonce" - 1) == 0))
880 continue;
252b5132 881 }
f7460f5f
JJ
882
883 /* Never adjust a reloc against local symbol in a merge section
884 with non-zero addend. */
5045ec7a
AM
885 if ((symsec->flags & SEC_MERGE) != 0
886 && (fixp->fx_offset != 0 || fixp->fx_subsy != NULL))
a161fe53 887 continue;
13ae64f3
JJ
888
889 /* Never adjust a reloc against TLS local symbol. */
df44284e 890 if ((symsec->flags & SEC_THREAD_LOCAL) != 0)
a161fe53 891 continue;
252b5132 892
a161fe53 893 /* We refetch the segment when calling section_symbol, rather
252b5132 894 than using symsec, because S_GET_VALUE may wind up changing
efaf0ba4 895 the section when it calls resolve_symbol_value. */
252b5132
RH
896 fixp->fx_offset += S_GET_VALUE (sym);
897 fixp->fx_addsy = section_symbol (S_GET_SEGMENT (sym));
e723ef7c
ILT
898#ifdef DEBUG5
899 fprintf (stderr, "\nadjusted fixup:\n");
900 print_fixup (fixp);
901#endif
252b5132 902 }
252b5132
RH
903
904 dump_section_relocs (abfd, sec, stderr);
905}
906
e7ff5c73
AM
907/* fixup_segment()
908
909 Go through all the fixS's in a segment and see which ones can be
910 handled now. (These consist of fixS where we have since discovered
911 the value of a symbol, or the address of the frag involved.)
912 For each one, call md_apply_fix to put the fix into the frag data.
89d67ed9
AM
913 Ones that we couldn't completely handle here will be output later
914 by emit_relocations. */
e7ff5c73 915
89d67ed9 916static void
e7ff5c73
AM
917fixup_segment (fixS *fixP, segT this_segment)
918{
e7ff5c73
AM
919 valueT add_number;
920 fragS *fragP;
921 segT add_symbol_segment = absolute_section;
922
923 if (fixP != NULL && abs_section_sym == NULL)
924 abs_section_sym = section_symbol (absolute_section);
925
926 /* If the linker is doing the relaxing, we must not do any fixups.
927
928 Well, strictly speaking that's not true -- we could do any that
a8eb42a8 929 are PC-relative and don't cross regions that could change size. */
e7ff5c73
AM
930 if (linkrelax && TC_LINKRELAX_FIXUP (this_segment))
931 {
932 for (; fixP; fixP = fixP->fx_next)
933 if (!fixP->fx_done)
934 {
935 if (fixP->fx_addsy == NULL)
936 {
937 /* There was no symbol required by this relocation.
938 However, BFD doesn't really handle relocations
939 without symbols well. So fake up a local symbol in
940 the absolute section. */
941 fixP->fx_addsy = abs_section_sym;
942 }
943 symbol_mark_used_in_reloc (fixP->fx_addsy);
944 if (fixP->fx_subsy != NULL)
945 symbol_mark_used_in_reloc (fixP->fx_subsy);
e7ff5c73 946 }
89d67ed9 947 return;
e7ff5c73
AM
948 }
949
950 for (; fixP; fixP = fixP->fx_next)
951 {
952#ifdef DEBUG5
953 fprintf (stderr, "\nprocessing fixup:\n");
954 print_fixup (fixP);
955#endif
956
957 fragP = fixP->fx_frag;
958 know (fragP);
959#ifdef TC_VALIDATE_FIX
960 TC_VALIDATE_FIX (fixP, this_segment, skip);
961#endif
962 add_number = fixP->fx_offset;
963
e7ff5c73
AM
964 if (fixP->fx_addsy != NULL)
965 add_symbol_segment = S_GET_SEGMENT (fixP->fx_addsy);
966
967 if (fixP->fx_subsy != NULL)
968 {
969 segT sub_symbol_segment;
970 resolve_symbol_value (fixP->fx_subsy);
971 sub_symbol_segment = S_GET_SEGMENT (fixP->fx_subsy);
972 if (fixP->fx_addsy != NULL
973 && sub_symbol_segment == add_symbol_segment
c969da64
RS
974 && !S_FORCE_RELOC (fixP->fx_addsy, 0)
975 && !S_FORCE_RELOC (fixP->fx_subsy, 0)
e7ff5c73
AM
976 && !TC_FORCE_RELOCATION_SUB_SAME (fixP, add_symbol_segment))
977 {
978 add_number += S_GET_VALUE (fixP->fx_addsy);
979 add_number -= S_GET_VALUE (fixP->fx_subsy);
980 fixP->fx_offset = add_number;
981 fixP->fx_addsy = NULL;
982 fixP->fx_subsy = NULL;
983#ifdef TC_M68K
984 /* See the comment below about 68k weirdness. */
985 fixP->fx_pcrel = 0;
986#endif
987 }
988 else if (sub_symbol_segment == absolute_section
c969da64 989 && !S_FORCE_RELOC (fixP->fx_subsy, 0)
9a97a5d7 990 && !TC_FORCE_RELOCATION_SUB_ABS (fixP, add_symbol_segment))
e7ff5c73
AM
991 {
992 add_number -= S_GET_VALUE (fixP->fx_subsy);
993 fixP->fx_offset = add_number;
994 fixP->fx_subsy = NULL;
995 }
996 else if (sub_symbol_segment == this_segment
c969da64 997 && !S_FORCE_RELOC (fixP->fx_subsy, 0)
5db484ff 998 && !TC_FORCE_RELOCATION_SUB_LOCAL (fixP, add_symbol_segment))
e7ff5c73
AM
999 {
1000 add_number -= S_GET_VALUE (fixP->fx_subsy);
1001 fixP->fx_offset = (add_number + fixP->fx_dot_value
8e723a10 1002 + fixP->fx_dot_frag->fr_address);
e7ff5c73
AM
1003
1004 /* Make it pc-relative. If the back-end code has not
1005 selected a pc-relative reloc, cancel the adjustment
1006 we do later on all pc-relative relocs. */
1007 if (0
1008#ifdef TC_M68K
1009 /* Do this for m68k even if it's already described
1010 as pc-relative. On the m68k, an operand of
1011 "pc@(foo-.-2)" should address "foo" in a
1012 pc-relative mode. */
1013 || 1
1014#endif
1015 || !fixP->fx_pcrel)
1016 add_number += MD_PCREL_FROM_SECTION (fixP, this_segment);
1017 fixP->fx_subsy = NULL;
1018 fixP->fx_pcrel = 1;
1019 }
586ec8c1 1020 else if (!TC_VALIDATE_FIX_SUB (fixP, add_symbol_segment))
e7ff5c73 1021 {
9a97a5d7
AM
1022 if (!md_register_arithmetic
1023 && (add_symbol_segment == reg_section
1024 || sub_symbol_segment == reg_section))
1025 as_bad_where (fixP->fx_file, fixP->fx_line,
1026 _("register value used as expression"));
1027 else
1028 as_bad_where (fixP->fx_file, fixP->fx_line,
1029 _("can't resolve `%s' {%s section} - `%s' {%s section}"),
1030 fixP->fx_addsy ? S_GET_NAME (fixP->fx_addsy) : "0",
1031 segment_name (add_symbol_segment),
1032 S_GET_NAME (fixP->fx_subsy),
1033 segment_name (sub_symbol_segment));
e7ff5c73 1034 }
586ec8c1
NC
1035 else if (sub_symbol_segment != undefined_section
1036 && ! bfd_is_com_section (sub_symbol_segment)
1037 && MD_APPLY_SYM_VALUE (fixP))
1038 add_number -= S_GET_VALUE (fixP->fx_subsy);
e7ff5c73
AM
1039 }
1040
1041 if (fixP->fx_addsy)
1042 {
1fc5d88e 1043 if (add_symbol_segment == this_segment
c969da64 1044 && !S_FORCE_RELOC (fixP->fx_addsy, 0)
e7ff5c73
AM
1045 && !TC_FORCE_RELOCATION_LOCAL (fixP))
1046 {
1047 /* This fixup was made when the symbol's segment was
1048 SEG_UNKNOWN, but it is now in the local segment.
1049 So we know how to do the address without relocation. */
1050 add_number += S_GET_VALUE (fixP->fx_addsy);
1051 fixP->fx_offset = add_number;
1052 if (fixP->fx_pcrel)
1053 add_number -= MD_PCREL_FROM_SECTION (fixP, this_segment);
1054 fixP->fx_addsy = NULL;
1055 fixP->fx_pcrel = 0;
1056 }
1057 else if (add_symbol_segment == absolute_section
c969da64 1058 && !S_FORCE_RELOC (fixP->fx_addsy, 0)
e7ff5c73
AM
1059 && !TC_FORCE_RELOCATION_ABS (fixP))
1060 {
1061 add_number += S_GET_VALUE (fixP->fx_addsy);
1062 fixP->fx_offset = add_number;
1063 fixP->fx_addsy = NULL;
1064 }
1065 else if (add_symbol_segment != undefined_section
1066 && ! bfd_is_com_section (add_symbol_segment)
1067 && MD_APPLY_SYM_VALUE (fixP))
1068 add_number += S_GET_VALUE (fixP->fx_addsy);
1069 }
1070
1071 if (fixP->fx_pcrel)
1072 {
1073 add_number -= MD_PCREL_FROM_SECTION (fixP, this_segment);
1074 if (!fixP->fx_done && fixP->fx_addsy == NULL)
1075 {
1076 /* There was no symbol required by this relocation.
1077 However, BFD doesn't really handle relocations
1078 without symbols well. So fake up a local symbol in
1079 the absolute section. */
1080 fixP->fx_addsy = abs_section_sym;
1081 }
1082 }
1083
1084 if (!fixP->fx_done)
1085 md_apply_fix (fixP, &add_number, this_segment);
1086
1087 if (!fixP->fx_done)
1088 {
e7ff5c73
AM
1089 if (fixP->fx_addsy == NULL)
1090 fixP->fx_addsy = abs_section_sym;
1091 symbol_mark_used_in_reloc (fixP->fx_addsy);
1092 if (fixP->fx_subsy != NULL)
1093 symbol_mark_used_in_reloc (fixP->fx_subsy);
1094 }
1095
1096 if (!fixP->fx_bit_fixP && !fixP->fx_no_overflow && fixP->fx_size != 0)
1097 {
1098 if (fixP->fx_size < sizeof (valueT))
1099 {
1100 valueT mask;
1101
1102 mask = 0;
1103 mask--; /* Set all bits to one. */
1104 mask <<= fixP->fx_size * 8 - (fixP->fx_signed ? 1 : 0);
1105 if ((add_number & mask) != 0 && (add_number & mask) != mask)
1106 {
1107 char buf[50], buf2[50];
1108 sprint_value (buf, fragP->fr_address + fixP->fx_where);
1109 if (add_number > 1000)
1110 sprint_value (buf2, add_number);
1111 else
1112 sprintf (buf2, "%ld", (long) add_number);
1113 as_bad_where (fixP->fx_file, fixP->fx_line,
992a06ee
AM
1114 ngettext ("value of %s too large for field "
1115 "of %d byte at %s",
1116 "value of %s too large for field "
1117 "of %d bytes at %s",
1118 fixP->fx_size),
e7ff5c73
AM
1119 buf2, fixP->fx_size, buf);
1120 } /* Generic error checking. */
1121 }
1122#ifdef WARN_SIGNED_OVERFLOW_WORD
1123 /* Warn if a .word value is too large when treated as a signed
1124 number. We already know it is not too negative. This is to
1125 catch over-large switches generated by gcc on the 68k. */
1126 if (!flag_signed_overflow_ok
1127 && fixP->fx_size == 2
1128 && add_number > 0x7fff)
1129 as_bad_where (fixP->fx_file, fixP->fx_line,
1130 _("signed .word overflow; switch may be too large; %ld at 0x%lx"),
1131 (long) add_number,
1132 (long) (fragP->fr_address + fixP->fx_where));
1133#endif
1134 } /* Not a bit fix. */
1135
1136#ifdef TC_VALIDATE_FIX
1137 skip: ATTRIBUTE_UNUSED_LABEL
1138 ;
1139#endif
1140#ifdef DEBUG5
1141 fprintf (stderr, "result:\n");
1142 print_fixup (fixP);
1143#endif
1144 } /* For each fixS in this segment. */
e7ff5c73
AM
1145}
1146
a161fe53 1147static void
d7342424
KH
1148fix_segment (bfd *abfd ATTRIBUTE_UNUSED,
1149 asection *sec,
e7ff5c73 1150 void *xxx ATTRIBUTE_UNUSED)
a161fe53
AM
1151{
1152 segment_info_type *seginfo = seg_info (sec);
1153
1154 fixup_segment (seginfo->fix_root, sec);
1155}
1156
e5435dec
AM
1157static void
1158install_reloc (asection *sec, arelent *reloc, fragS *fragp,
3b4dbbbf 1159 const char *file, unsigned int line)
e5435dec
AM
1160{
1161 char *err;
1162 bfd_reloc_status_type s;
76d12939
AM
1163 asymbol *sym;
1164
1165 if (reloc->sym_ptr_ptr != NULL
1166 && (sym = *reloc->sym_ptr_ptr) != NULL
1167 && (sym->flags & BSF_KEEP) == 0
1168 && ((sym->flags & BSF_SECTION_SYM) == 0
55f8b826
AM
1169 || (EMIT_SECTION_SYMBOLS
1170 && !bfd_is_abs_section (sym->section))))
76d12939 1171 as_bad_where (file, line, _("redefined symbol cannot be used on reloc"));
e5435dec
AM
1172
1173 s = bfd_install_relocation (stdoutput, reloc,
1174 fragp->fr_literal, fragp->fr_address,
1175 sec, &err);
1176 switch (s)
1177 {
1178 case bfd_reloc_ok:
1179 break;
1180 case bfd_reloc_overflow:
1181 as_bad_where (file, line, _("relocation overflow"));
1182 break;
1183 case bfd_reloc_outofrange:
1184 as_bad_where (file, line, _("relocation out of range"));
1185 break;
1186 default:
1187 as_fatal (_("%s:%u: bad return from bfd_install_relocation: %x"),
1188 file, line, s);
1189 }
1190}
1191
7230378d
AM
1192static fragS *
1193get_frag_for_reloc (fragS *last_frag,
1194 const segment_info_type *seginfo,
1195 const struct reloc_list *r)
1196{
1197 fragS *f;
34bca508 1198
7230378d
AM
1199 for (f = last_frag; f != NULL; f = f->fr_next)
1200 if (f->fr_address <= r->u.b.r.address
1201 && r->u.b.r.address < f->fr_address + f->fr_fix)
1202 return f;
1203
1204 for (f = seginfo->frchainP->frch_root; f != NULL; f = f->fr_next)
1205 if (f->fr_address <= r->u.b.r.address
1206 && r->u.b.r.address < f->fr_address + f->fr_fix)
1207 return f;
1208
740bdc67
AM
1209 for (f = seginfo->frchainP->frch_root; f != NULL; f = f->fr_next)
1210 if (f->fr_address <= r->u.b.r.address
1211 && r->u.b.r.address <= f->fr_address + f->fr_fix)
1212 return f;
1213
7230378d
AM
1214 as_bad_where (r->file, r->line,
1215 _("reloc not within (fixed part of) section"));
1216 return NULL;
1217}
1218
252b5132 1219static void
e7ff5c73 1220write_relocs (bfd *abfd, asection *sec, void *xxx ATTRIBUTE_UNUSED)
252b5132
RH
1221{
1222 segment_info_type *seginfo = seg_info (sec);
252b5132 1223 unsigned int n;
05e9452c 1224 struct reloc_list *my_reloc_list, **rp, *r;
252b5132
RH
1225 arelent **relocs;
1226 fixS *fixp;
7230378d 1227 fragS *last_frag;
252b5132
RH
1228
1229 /* If seginfo is NULL, we did not create this section; don't do
1230 anything with it. */
1231 if (seginfo == NULL)
1232 return;
1233
252b5132
RH
1234 n = 0;
1235 for (fixp = seginfo->fix_root; fixp; fixp = fixp->fx_next)
e5435dec
AM
1236 if (!fixp->fx_done)
1237 n++;
1238
1239#ifdef RELOC_EXPANSION_POSSIBLE
1240 n *= MAX_RELOC_EXPANSION;
1241#endif
252b5132 1242
05e9452c
AM
1243 /* Extract relocs for this section from reloc_list. */
1244 rp = &reloc_list;
1245 my_reloc_list = NULL;
1246 while ((r = *rp) != NULL)
1247 {
1248 if (r->u.b.sec == sec)
1249 {
1250 *rp = r->next;
1251 r->next = my_reloc_list;
1252 my_reloc_list = r;
1253 n++;
1254 }
1255 else
1256 rp = &r->next;
1257 }
1258
add39d23 1259 relocs = XCNEWVEC (arelent *, n);
252b5132 1260
7230378d
AM
1261 n = 0;
1262 r = my_reloc_list;
1263 last_frag = NULL;
252b5132
RH
1264 for (fixp = seginfo->fix_root; fixp != (fixS *) NULL; fixp = fixp->fx_next)
1265 {
d31f0f6d
AM
1266 int fx_size, slack;
1267 offsetT loc;
7230378d
AM
1268 arelent **reloc;
1269#ifndef RELOC_EXPANSION_POSSIBLE
1270 arelent *rel;
1271
1272 reloc = &rel;
1273#endif
252b5132
RH
1274
1275 if (fixp->fx_done)
e5435dec 1276 continue;
252b5132 1277
d31f0f6d
AM
1278 fx_size = fixp->fx_size;
1279 slack = TC_FX_SIZE_SLACK (fixp);
1280 if (slack > 0)
1281 fx_size = fx_size > slack ? fx_size - slack : 0;
1282 loc = fixp->fx_where + fx_size;
e5435dec 1283 if (slack >= 0 && loc > fixp->fx_frag->fr_fix)
d31f0f6d
AM
1284 as_bad_where (fixp->fx_file, fixp->fx_line,
1285 _("internal error: fixup not contained within frag"));
252b5132 1286
e5435dec 1287#ifndef RELOC_EXPANSION_POSSIBLE
7230378d 1288 *reloc = tc_gen_reloc (sec, fixp);
e5435dec 1289#else
7230378d
AM
1290 reloc = tc_gen_reloc (sec, fixp);
1291#endif
252b5132 1292
7230378d
AM
1293 while (*reloc)
1294 {
1295 while (r != NULL && r->u.b.r.address < (*reloc)->address)
1296 {
1297 fragS *f = get_frag_for_reloc (last_frag, seginfo, r);
1298 if (f != NULL)
1299 {
1300 last_frag = f;
1301 relocs[n++] = &r->u.b.r;
1302 install_reloc (sec, &r->u.b.r, f, r->file, r->line);
1303 }
1304 r = r->next;
1305 }
1306 relocs[n++] = *reloc;
1307 install_reloc (sec, *reloc, fixp->fx_frag,
1308 fixp->fx_file, fixp->fx_line);
1309#ifndef RELOC_EXPANSION_POSSIBLE
1310 break;
1311#else
1312 reloc++;
e5435dec 1313#endif
7230378d
AM
1314 }
1315 }
d31f0f6d 1316
7230378d
AM
1317 while (r != NULL)
1318 {
1319 fragS *f = get_frag_for_reloc (last_frag, seginfo, r);
1320 if (f != NULL)
1321 {
1322 last_frag = f;
1323 relocs[n++] = &r->u.b.r;
1324 install_reloc (sec, &r->u.b.r, f, r->file, r->line);
1325 }
1326 r = r->next;
252b5132 1327 }
252b5132
RH
1328
1329#ifdef DEBUG4
1330 {
1596988d 1331 unsigned int k, j, nsyms;
252b5132
RH
1332 asymbol **sympp;
1333 sympp = bfd_get_outsymbols (stdoutput);
1334 nsyms = bfd_get_symcount (stdoutput);
1596988d
TG
1335 for (k = 0; k < n; k++)
1336 if (((*relocs[k]->sym_ptr_ptr)->flags & BSF_SECTION_SYM) == 0)
252b5132
RH
1337 {
1338 for (j = 0; j < nsyms; j++)
1596988d 1339 if (sympp[j] == *relocs[k]->sym_ptr_ptr)
252b5132
RH
1340 break;
1341 if (j == nsyms)
1342 abort ();
1343 }
1344 }
1345#endif
1346
1347 if (n)
e5435dec
AM
1348 {
1349 flagword flags = bfd_get_section_flags (abfd, sec);
1350 flags |= SEC_RELOC;
1351 bfd_set_section_flags (abfd, sec, flags);
1352 bfd_set_reloc (stdoutput, sec, relocs, n);
1353 }
252b5132 1354
945a1a6b
ILT
1355#ifdef SET_SECTION_RELOCS
1356 SET_SECTION_RELOCS (sec, relocs, n);
1357#endif
1358
252b5132
RH
1359#ifdef DEBUG3
1360 {
1596988d
TG
1361 unsigned int k;
1362
252b5132 1363 fprintf (stderr, "relocs for sec %s\n", sec->name);
1596988d 1364 for (k = 0; k < n; k++)
252b5132 1365 {
1596988d
TG
1366 arelent *rel = relocs[k];
1367 asymbol *s = *rel->sym_ptr_ptr;
988392e2 1368 fprintf (stderr, " reloc %2d @%p off %4lx : sym %-10s addend %lx\n",
1596988d
TG
1369 k, rel, (unsigned long)rel->address, s->name,
1370 (unsigned long)rel->addend);
252b5132
RH
1371 }
1372 }
1373#endif
1374}
1375
0acf065b
CC
1376static int
1377compress_frag (struct z_stream_s *strm, const char *contents, int in_size,
1378 fragS **last_newf, struct obstack *ob)
1379{
1380 int out_size;
1381 int total_out_size = 0;
1382 fragS *f = *last_newf;
1383 char *next_out;
1384 int avail_out;
1385
1386 /* Call the compression routine repeatedly until it has finished
1387 processing the frag. */
1388 while (in_size > 0)
1389 {
1390 /* Reserve all the space available in the current chunk.
1391 If none is available, start a new frag. */
1392 avail_out = obstack_room (ob);
1393 if (avail_out <= 0)
1394 {
1395 obstack_finish (ob);
1396 f = frag_alloc (ob);
1397 f->fr_type = rs_fill;
1398 (*last_newf)->fr_next = f;
1399 *last_newf = f;
1400 avail_out = obstack_room (ob);
1401 }
1402 if (avail_out <= 0)
1403 as_fatal (_("can't extend frag"));
1404 next_out = obstack_next_free (ob);
1405 obstack_blank_fast (ob, avail_out);
1406 out_size = compress_data (strm, &contents, &in_size,
1407 &next_out, &avail_out);
1408 if (out_size < 0)
1409 return -1;
1410
1411 f->fr_fix += out_size;
1412 total_out_size += out_size;
1413
1414 /* Return unused space. */
1415 if (avail_out > 0)
1416 obstack_blank_fast (ob, -avail_out);
1417 }
1418
1419 return total_out_size;
1420}
1421
1422static void
1423compress_debug (bfd *abfd, asection *sec, void *xxx ATTRIBUTE_UNUSED)
1424{
1425 segment_info_type *seginfo = seg_info (sec);
1426 fragS *f;
1427 fragS *first_newf;
1428 fragS *last_newf;
1429 struct obstack *ob = &seginfo->frchainP->frch_obstack;
1430 bfd_size_type uncompressed_size = (bfd_size_type) sec->size;
1431 bfd_size_type compressed_size;
1432 const char *section_name;
1433 char *compressed_name;
1434 char *header;
1435 struct z_stream_s *strm;
1436 int x;
4a114e3e 1437 flagword flags = bfd_get_section_flags (abfd, sec);
151411f8 1438 unsigned int header_size, compression_header_size;
0acf065b
CC
1439
1440 if (seginfo == NULL
6ac88ef3 1441 || sec->size < 32
4a114e3e 1442 || (flags & (SEC_ALLOC | SEC_HAS_CONTENTS)) == SEC_ALLOC)
0acf065b
CC
1443 return;
1444
1445 section_name = bfd_get_section_name (stdoutput, sec);
1446 if (strncmp (section_name, ".debug_", 7) != 0)
1447 return;
1448
1449 strm = compress_init ();
1450 if (strm == NULL)
1451 return;
1452
151411f8 1453 if (flag_compress_debug == COMPRESS_DEBUG_GABI_ZLIB)
dab394de 1454 {
dab394de
L
1455 compression_header_size
1456 = bfd_get_compression_header_size (stdoutput, NULL);
1457 header_size = compression_header_size;
1458 }
151411f8 1459 else
dab394de 1460 {
dab394de
L
1461 compression_header_size = 0;
1462 header_size = 12;
1463 }
151411f8 1464
dab394de 1465 /* Create a new frag to contain the compression header. */
0acf065b 1466 first_newf = frag_alloc (ob);
151411f8 1467 if (obstack_room (ob) < header_size)
0acf065b 1468 first_newf = frag_alloc (ob);
151411f8 1469 if (obstack_room (ob) < header_size)
992a06ee
AM
1470 as_fatal (ngettext ("can't extend frag %lu char",
1471 "can't extend frag %lu chars",
1472 (unsigned long) header_size),
1473 (unsigned long) header_size);
0acf065b 1474 last_newf = first_newf;
151411f8 1475 obstack_blank_fast (ob, header_size);
0acf065b 1476 last_newf->fr_type = rs_fill;
151411f8 1477 last_newf->fr_fix = header_size;
0acf065b 1478 header = last_newf->fr_literal;
151411f8 1479 compressed_size = header_size;
0acf065b
CC
1480
1481 /* Stream the frags through the compression engine, adding new frags
2b0f3761 1482 as necessary to accommodate the compressed output. */
0acf065b
CC
1483 for (f = seginfo->frchainP->frch_root;
1484 f;
1485 f = f->fr_next)
1486 {
1487 offsetT fill_size;
1488 char *fill_literal;
1489 offsetT count;
1490 int out_size;
1491
1492 gas_assert (f->fr_type == rs_fill);
1493 if (f->fr_fix)
1494 {
1495 out_size = compress_frag (strm, f->fr_literal, f->fr_fix,
1496 &last_newf, ob);
1497 if (out_size < 0)
1498 return;
1499 compressed_size += out_size;
1500 }
1501 fill_literal = f->fr_literal + f->fr_fix;
1502 fill_size = f->fr_var;
1503 count = f->fr_offset;
1504 gas_assert (count >= 0);
1505 if (fill_size && count)
1506 {
1507 while (count--)
1508 {
1509 out_size = compress_frag (strm, fill_literal, (int) fill_size,
1510 &last_newf, ob);
1511 if (out_size < 0)
1512 return;
1513 compressed_size += out_size;
1514 }
1515 }
1516 }
1517
1518 /* Flush the compression state. */
1519 for (;;)
1520 {
1521 int avail_out;
1522 char *next_out;
1523 int out_size;
1524
1525 /* Reserve all the space available in the current chunk.
1526 If none is available, start a new frag. */
1527 avail_out = obstack_room (ob);
1528 if (avail_out <= 0)
1529 {
1530 fragS *newf;
1531
1532 obstack_finish (ob);
1533 newf = frag_alloc (ob);
1534 newf->fr_type = rs_fill;
1535 last_newf->fr_next = newf;
1536 last_newf = newf;
1537 avail_out = obstack_room (ob);
1538 }
1539 if (avail_out <= 0)
1540 as_fatal (_("can't extend frag"));
1541 next_out = obstack_next_free (ob);
1542 obstack_blank_fast (ob, avail_out);
1543 x = compress_finish (strm, &next_out, &avail_out, &out_size);
1544 if (x < 0)
1545 return;
1546
1547 last_newf->fr_fix += out_size;
1548 compressed_size += out_size;
1549
1550 /* Return unused space. */
1551 if (avail_out > 0)
1552 obstack_blank_fast (ob, -avail_out);
1553
1554 if (x == 0)
1555 break;
1556 }
1557
b422eb49
L
1558 /* PR binutils/18087: If compression didn't make the section smaller,
1559 just keep it uncompressed. */
317974f6 1560 if (compressed_size >= uncompressed_size)
273a4985 1561 return;
d94077e2 1562
0acf065b
CC
1563 /* Replace the uncompressed frag list with the compressed frag list. */
1564 seginfo->frchainP->frch_root = first_newf;
1565 seginfo->frchainP->frch_last = last_newf;
1566
1567 /* Update the section size and its name. */
151411f8 1568 bfd_update_compression_header (abfd, (bfd_byte *) header, sec);
0acf065b
CC
1569 x = bfd_set_section_size (abfd, sec, compressed_size);
1570 gas_assert (x);
151411f8
L
1571 if (!compression_header_size)
1572 {
29a2809e 1573 compressed_name = concat (".z", section_name + 1, (char *) NULL);
151411f8
L
1574 bfd_section_name (stdoutput, sec) = compressed_name;
1575 }
0acf065b
CC
1576}
1577
62a02d25
L
1578#ifndef md_generate_nops
1579/* Genenerate COUNT bytes of no-op instructions to WHERE. A target
1580 backend must override this with proper no-op instructions. */
1581
1582static void
1583md_generate_nops (fragS *f ATTRIBUTE_UNUSED,
1584 char *where ATTRIBUTE_UNUSED,
1585 offsetT count ATTRIBUTE_UNUSED,
1586 int control ATTRIBUTE_UNUSED)
1587{
8f065d3b 1588 as_bad (_("unimplemented .nops directive"));
62a02d25
L
1589}
1590#endif
1591
252b5132 1592static void
d7342424
KH
1593write_contents (bfd *abfd ATTRIBUTE_UNUSED,
1594 asection *sec,
e7ff5c73 1595 void *xxx ATTRIBUTE_UNUSED)
252b5132
RH
1596{
1597 segment_info_type *seginfo = seg_info (sec);
685736be 1598 addressT offset = 0;
252b5132
RH
1599 fragS *f;
1600
1601 /* Write out the frags. */
1602 if (seginfo == NULL
efaf0ba4 1603 || !(bfd_get_section_flags (abfd, sec) & SEC_HAS_CONTENTS))
252b5132
RH
1604 return;
1605
1606 for (f = seginfo->frchainP->frch_root;
1607 f;
1608 f = f->fr_next)
1609 {
1610 int x;
685736be 1611 addressT fill_size;
252b5132 1612 char *fill_literal;
685736be 1613 offsetT count;
252b5132 1614
62a02d25 1615 gas_assert (f->fr_type == rs_fill || f->fr_type == rs_fill_nop);
252b5132
RH
1616 if (f->fr_fix)
1617 {
1618 x = bfd_set_section_contents (stdoutput, sec,
1619 f->fr_literal, (file_ptr) offset,
1620 (bfd_size_type) f->fr_fix);
b34976b6 1621 if (!x)
992a06ee
AM
1622 as_fatal (ngettext ("can't write %ld byte "
1623 "to section %s of %s: '%s'",
1624 "can't write %ld bytes "
1625 "to section %s of %s: '%s'",
1626 (long) f->fr_fix),
1627 (long) f->fr_fix,
1628 sec->name, stdoutput->filename,
885afe7b 1629 bfd_errmsg (bfd_get_error ()));
252b5132
RH
1630 offset += f->fr_fix;
1631 }
62a02d25 1632
252b5132
RH
1633 fill_size = f->fr_var;
1634 count = f->fr_offset;
62a02d25
L
1635 fill_literal = f->fr_literal + f->fr_fix;
1636
1637 if (f->fr_type == rs_fill_nop)
1638 {
1639 gas_assert (count >= 0 && fill_size == 1);
1640 if (count > 0)
1641 {
1642 char *buf = xmalloc (count);
1643 md_generate_nops (f, buf, count, *fill_literal);
1644 x = bfd_set_section_contents
1645 (stdoutput, sec, buf, (file_ptr) offset,
1646 (bfd_size_type) count);
1647 if (!x)
1648 as_fatal (ngettext ("can't fill %ld byte "
1649 "in section %s of %s: '%s'",
1650 "can't fill %ld bytes "
1651 "in section %s of %s: '%s'",
1652 (long) count), (long) count,
1653 sec->name, stdoutput->filename,
1654 bfd_errmsg (bfd_get_error ()));
1655 offset += count;
1656 free (buf);
1657 }
1658 continue;
1659 }
1660
9c2799c2 1661 gas_assert (count >= 0);
252b5132
RH
1662 if (fill_size && count)
1663 {
1664 char buf[256];
efaf0ba4 1665 if (fill_size > sizeof (buf))
252b5132 1666 {
efaf0ba4 1667 /* Do it the old way. Can this ever happen? */
252b5132
RH
1668 while (count--)
1669 {
1670 x = bfd_set_section_contents (stdoutput, sec,
1671 fill_literal,
1672 (file_ptr) offset,
1673 (bfd_size_type) fill_size);
b34976b6 1674 if (!x)
992a06ee
AM
1675 as_fatal (ngettext ("can't fill %ld byte "
1676 "in section %s of %s: '%s'",
1677 "can't fill %ld bytes "
1678 "in section %s of %s: '%s'",
1679 (long) fill_size),
1680 (long) fill_size,
1681 sec->name, stdoutput->filename,
885afe7b 1682 bfd_errmsg (bfd_get_error ()));
252b5132
RH
1683 offset += fill_size;
1684 }
1685 }
1686 else
1687 {
1688 /* Build a buffer full of fill objects and output it as
1689 often as necessary. This saves on the overhead of
1690 potentially lots of bfd_set_section_contents calls. */
1691 int n_per_buf, i;
1692 if (fill_size == 1)
1693 {
1694 n_per_buf = sizeof (buf);
1695 memset (buf, *fill_literal, n_per_buf);
1696 }
1697 else
1698 {
1699 char *bufp;
efaf0ba4 1700 n_per_buf = sizeof (buf) / fill_size;
252b5132 1701 for (i = n_per_buf, bufp = buf; i; i--, bufp += fill_size)
efaf0ba4 1702 memcpy (bufp, fill_literal, fill_size);
252b5132
RH
1703 }
1704 for (; count > 0; count -= n_per_buf)
1705 {
1706 n_per_buf = n_per_buf > count ? count : n_per_buf;
efaf0ba4
NC
1707 x = bfd_set_section_contents
1708 (stdoutput, sec, buf, (file_ptr) offset,
1709 (bfd_size_type) n_per_buf * fill_size);
b34976b6 1710 if (!x)
992a06ee
AM
1711 as_fatal (ngettext ("can't fill %ld byte "
1712 "in section %s of %s: '%s'",
1713 "can't fill %ld bytes "
1714 "in section %s of %s: '%s'",
1715 (long) (n_per_buf * fill_size)),
1716 (long) (n_per_buf * fill_size),
1717 sec->name, stdoutput->filename,
a22429b9 1718 bfd_errmsg (bfd_get_error ()));
252b5132
RH
1719 offset += n_per_buf * fill_size;
1720 }
1721 }
1722 }
1723 }
1724}
252b5132 1725
252b5132 1726static void
d7342424 1727merge_data_into_text (void)
252b5132 1728{
252b5132
RH
1729 seg_info (text_section)->frchainP->frch_last->fr_next =
1730 seg_info (data_section)->frchainP->frch_root;
1731 seg_info (text_section)->frchainP->frch_last =
1732 seg_info (data_section)->frchainP->frch_last;
1733 seg_info (data_section)->frchainP = 0;
252b5132 1734}
252b5132 1735
252b5132 1736static void
d7342424 1737set_symtab (void)
252b5132
RH
1738{
1739 int nsyms;
1740 asymbol **asympp;
1741 symbolS *symp;
b34976b6 1742 bfd_boolean result;
252b5132
RH
1743
1744 /* Count symbols. We can't rely on a count made by the loop in
1745 write_object_file, because *_frob_file may add a new symbol or
1746 two. */
1747 nsyms = 0;
1748 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
1749 nsyms++;
1750
1751 if (nsyms)
1752 {
1753 int i;
0e1a166b 1754 bfd_size_type amt = (bfd_size_type) nsyms * sizeof (asymbol *);
252b5132 1755
1e9cc1c2 1756 asympp = (asymbol **) bfd_alloc (stdoutput, amt);
252b5132
RH
1757 symp = symbol_rootP;
1758 for (i = 0; i < nsyms; i++, symp = symbol_next (symp))
1759 {
49309057 1760 asympp[i] = symbol_get_bfdsym (symp);
76d12939
AM
1761 if (asympp[i]->flags != BSF_SECTION_SYM
1762 || !(bfd_is_const_section (asympp[i]->section)
1763 && asympp[i]->section->symbol == asympp[i]))
1764 asympp[i]->flags |= BSF_KEEP;
49309057 1765 symbol_mark_written (symp);
252b5132
RH
1766 }
1767 }
1768 else
1769 asympp = 0;
1770 result = bfd_set_symtab (stdoutput, asympp, nsyms);
9c2799c2 1771 gas_assert (result);
252b5132
RH
1772 symbol_table_frozen = 1;
1773}
252b5132
RH
1774
1775/* Finish the subsegments. After every sub-segment, we fake an
2edb36e7 1776 ".align ...". This conforms to BSD4.2 brain-damage. We then fake
252b5132
RH
1777 ".fill 0" because that is the kind of frag that requires least
1778 thought. ".align" frags like to have a following frag since that
1779 makes calculating their intended length trivial. */
1780
1781#ifndef SUB_SEGMENT_ALIGN
18e1d487 1782#ifdef HANDLE_ALIGN
436d9e46 1783/* The last subsegment gets an alignment corresponding to the alignment
18e1d487
AM
1784 of the section. This allows proper nop-filling at the end of
1785 code-bearing sections. */
1786#define SUB_SEGMENT_ALIGN(SEG, FRCHAIN) \
9028d943 1787 (!(FRCHAIN)->frch_next && subseg_text_p (SEG) \
2edb36e7 1788 && !do_not_pad_sections_to_alignment \
9028d943
AM
1789 ? get_recorded_alignment (SEG) \
1790 : 0)
18e1d487 1791#else
18e1d487 1792#define SUB_SEGMENT_ALIGN(SEG, FRCHAIN) 0
252b5132
RH
1793#endif
1794#endif
1795
85024cd8 1796static void
d98b0e2b 1797subsegs_finish_section (asection *s)
252b5132
RH
1798{
1799 struct frchain *frchainP;
d98b0e2b
TG
1800 segment_info_type *seginfo = seg_info (s);
1801 if (!seginfo)
1802 return;
252b5132 1803
d98b0e2b
TG
1804 for (frchainP = seginfo->frchainP;
1805 frchainP != NULL;
1806 frchainP = frchainP->frch_next)
252b5132 1807 {
93a24ba7 1808 int alignment;
0a9ef439 1809
d98b0e2b 1810 subseg_set (s, frchainP->frch_subseg);
381a1ab3 1811
d98b0e2b
TG
1812 /* This now gets called even if we had errors. In that case,
1813 any alignment is meaningless, and, moreover, will look weird
1814 if we are generating a listing. */
93a24ba7
MR
1815 if (had_errors ())
1816 do_not_pad_sections_to_alignment = 1;
c9049d30 1817
93a24ba7
MR
1818 alignment = SUB_SEGMENT_ALIGN (now_seg, frchainP);
1819 if ((bfd_get_section_flags (now_seg->owner, now_seg) & SEC_MERGE)
1820 && now_seg->entsize)
1821 {
1822 unsigned int entsize = now_seg->entsize;
1823 int entalign = 0;
d98b0e2b 1824
93a24ba7
MR
1825 while ((entsize & 1) == 0)
1826 {
1827 ++entalign;
1828 entsize >>= 1;
381a1ab3 1829 }
93a24ba7
MR
1830
1831 if (entalign > alignment)
1832 alignment = entalign;
d98b0e2b 1833 }
0a9ef439 1834
d98b0e2b
TG
1835 if (subseg_text_p (now_seg))
1836 frag_align_code (alignment, 0);
1837 else
1838 frag_align (alignment, 0, 0);
252b5132 1839
d98b0e2b
TG
1840 /* frag_align will have left a new frag.
1841 Use this last frag for an empty ".fill".
252b5132 1842
d98b0e2b
TG
1843 For this segment ...
1844 Create a last frag. Do not leave a "being filled in frag". */
1845 frag_wane (frag_now);
1846 frag_now->fr_fix = 0;
1847 know (frag_now->fr_next == NULL);
252b5132
RH
1848 }
1849}
1850
d98b0e2b
TG
1851static void
1852subsegs_finish (void)
1853{
1854 asection *s;
1855
1856 for (s = stdoutput->sections; s; s = s->next)
1857 subsegs_finish_section (s);
1858}
1859
1860#ifdef OBJ_ELF
1861static void
1862create_obj_attrs_section (void)
1863{
1864 segT s;
1865 char *p;
1866 offsetT size;
1867 const char *name;
1868
1869 size = bfd_elf_obj_attr_size (stdoutput);
0df8ad28
NC
1870 if (size == 0)
1871 return;
1872
1873 name = get_elf_backend_data (stdoutput)->obj_attrs_section;
1874 if (!name)
1875 name = ".gnu.attributes";
1876 s = subseg_new (name, 0);
1877 elf_section_type (s)
1878 = get_elf_backend_data (stdoutput)->obj_attrs_section_type;
1879 bfd_set_section_flags (stdoutput, s, SEC_READONLY | SEC_DATA);
1880 frag_now_fix ();
1881 p = frag_more (size);
1882 bfd_elf_set_obj_attr_contents (stdoutput, (bfd_byte *)p, size);
1883
1884 subsegs_finish_section (s);
1885 relax_segment (seg_info (s)->frchainP->frch_root, s, 0);
1886 size_seg (stdoutput, s, NULL);
1887}
1888
1889#include "struc-symbol.h"
1890
1891/* Create a relocation against an entry in a GNU Build attribute section. */
1892
1893static void
1894create_note_reloc (segT sec,
1895 symbolS * sym,
1896 bfd_size_type offset,
1897 int reloc_type,
1898 bfd_vma addend,
1899 char * note)
1900{
1901 struct reloc_list * reloc;
1902
1903 reloc = XNEW (struct reloc_list);
1904
1905 /* We create a .b type reloc as resolve_reloc_expr_symbols() has already been called. */
1906 reloc->u.b.sec = sec;
1907 reloc->u.b.s = sym->bsym;
1908 reloc->u.b.r.sym_ptr_ptr = & reloc->u.b.s;
1909 reloc->u.b.r.address = offset;
1910 reloc->u.b.r.addend = addend;
1911 reloc->u.b.r.howto = bfd_reloc_type_lookup (stdoutput, reloc_type);
1912
1913 if (reloc->u.b.r.howto == NULL)
d98b0e2b 1914 {
0df8ad28
NC
1915 as_bad (_("unable to create reloc for build note"));
1916 return;
1917 }
1918
1919 reloc->file = N_("<gnu build note>");
1920 reloc->line = 0;
1921
1922 reloc->next = reloc_list;
1923 reloc_list = reloc;
1924
1925 /* For REL relocs, store the addend in the section. */
1926 if (! sec->use_rela_p
1927 /* The SH target is a special case that uses RELA relocs
1928 but still stores the addend in the word being relocated. */
1929 || strstr (bfd_get_target (stdoutput), "-sh") != NULL)
1930 {
1931 if (target_big_endian)
1932 {
1933 if (bfd_arch_bits_per_address (stdoutput) <= 32)
1934 note[offset + 3] = addend;
1935 else
1936 note[offset + 7] = addend;
1937 }
1938 else
1939 note[offset] = addend;
d98b0e2b
TG
1940 }
1941}
0df8ad28
NC
1942
1943static void
1944maybe_generate_build_notes (void)
1945{
1946 segT sec;
1947 char * note;
1948 offsetT note_size;
1949 offsetT desc_size;
1950 offsetT desc2_offset;
1951 int desc_reloc;
1952 symbolS * sym;
1953
1954 if (! flag_generate_build_notes
1955 || bfd_get_section_by_name (stdoutput,
1956 GNU_BUILD_ATTRS_SECTION_NAME) != NULL)
1957 return;
1958
1959 /* Create a GNU Build Attribute section. */
1960 sec = subseg_new (GNU_BUILD_ATTRS_SECTION_NAME, FALSE);
1961 elf_section_type (sec) = SHT_NOTE;
1962 bfd_set_section_flags (stdoutput, sec,
1963 SEC_READONLY | SEC_HAS_CONTENTS | SEC_DATA);
1964 bfd_set_section_alignment (stdoutput, sec, 2);
1965
1966 /* Create a version note. */
1967 if (bfd_arch_bits_per_address (stdoutput) <= 32)
1968 {
1969 note_size = 28;
1970 desc_size = 8; /* Two 4-byte offsets. */
1971 desc2_offset = 24;
1972
1973 /* FIXME: The BFD backend for the CRX target does not support the
1974 BFD_RELOC_32, even though it really should. Likewise for the
1975 CR16 target. So we have special case code here... */
1976 if (strstr (bfd_get_target (stdoutput), "-crx") != NULL)
1977 desc_reloc = BFD_RELOC_CRX_NUM32;
1978 else if (strstr (bfd_get_target (stdoutput), "-cr16") != NULL)
1979 desc_reloc = BFD_RELOC_CR16_NUM32;
1980 else
1981 desc_reloc = BFD_RELOC_32;
1982 }
1983 else
1984 {
1985 note_size = 36;
1986 desc_size = 16; /* Two 8-byte offsets. */
1987 desc2_offset = 28;
1988 /* FIXME: The BFD backend for the IA64 target does not support the
1989 BFD_RELOC_64, even though it really should. The HPPA backend
1990 has a similar issue, although it does not support BFD_RELOCs at
1991 all! So we have special case code to handle these targets. */
1992 if (strstr (bfd_get_target (stdoutput), "-ia64") != NULL)
1993 desc_reloc = target_big_endian ? BFD_RELOC_IA64_DIR32MSB : BFD_RELOC_IA64_DIR32LSB;
1994 else if (strstr (bfd_get_target (stdoutput), "-hppa") != NULL)
1995 desc_reloc = 80; /* R_PARISC_DIR64. */
1996 else
1997 desc_reloc = BFD_RELOC_64;
1998 }
1999
2000 frag_now_fix ();
2001 note = frag_more (note_size);
2002 memset (note, 0, note_size);
2003
2004 if (target_big_endian)
2005 {
2006 note[3] = 8; /* strlen (name) + 1. */
2007 note[7] = desc_size; /* Two 8-byte offsets. */
2008 note[10] = NT_GNU_BUILD_ATTRIBUTE_OPEN >> 8;
2009 note[11] = NT_GNU_BUILD_ATTRIBUTE_OPEN & 0xff;
2010 }
2011 else
2012 {
2013 note[0] = 8; /* strlen (name) + 1. */
2014 note[4] = desc_size; /* Two 8-byte offsets. */
2015 note[8] = NT_GNU_BUILD_ATTRIBUTE_OPEN & 0xff;
2016 note[9] = NT_GNU_BUILD_ATTRIBUTE_OPEN >> 8;
2017 }
2018
2019 /* The a1 version number indicates that this note was
2020 generated by the assembler and not the gcc annobin plugin. */
2021 memcpy (note + 12, "GA$\ 13a1", 8);
2022
2023 /* Find the first code section symbol. */
2024 for (sym = symbol_rootP; sym != NULL; sym = sym->sy_next)
2025 if (sym->bsym != NULL
2026 && sym->bsym->flags & BSF_SECTION_SYM
2027 && sym->bsym->section != NULL
2028 && sym->bsym->section->flags & SEC_CODE)
2029 {
2030 /* Found one - now create a relocation against this symbol. */
2031 create_note_reloc (sec, sym, 20, desc_reloc, 0, note);
2032 break;
2033 }
2034
2035 /* Find the last code section symbol. */
2036 if (sym)
2037 {
2038 for (sym = symbol_lastP; sym != NULL; sym = sym->sy_previous)
2039 if (sym->bsym != NULL
2040 && sym->bsym->flags & BSF_SECTION_SYM
2041 && sym->bsym->section != NULL
2042 && sym->bsym->section->flags & SEC_CODE)
2043 {
2044 /* Create a relocation against the end of this symbol. */
2045 create_note_reloc (sec, sym, desc2_offset, desc_reloc,
2046 bfd_get_section_size (sym->bsym->section),
2047 note);
2048 break;
2049 }
2050 }
2051 /* else - if we were unable to find any code section symbols then
2052 probably there is no code in the output. So leaving the start
2053 and end values as zero in the note is OK. */
2054
2055 /* FIXME: Maybe add a note recording the assembler command line and version ? */
2056
2057 /* Install the note(s) into the section. */
2058 bfd_set_section_contents (stdoutput, sec, (bfd_byte *) note, 0, note_size);
2059 subsegs_finish_section (sec);
2060 relax_segment (seg_info (sec)->frchainP->frch_root, sec, 0);
2061 size_seg (stdoutput, sec, NULL);
2062}
2063#endif /* OBJ_ELF */
d98b0e2b 2064
252b5132
RH
2065/* Write the object file. */
2066
2067void
d7342424 2068write_object_file (void)
252b5132 2069{
32638454 2070 struct relax_seg_info rsi;
7be1c489 2071#ifndef WORKING_DOT_WORD
efaf0ba4 2072 fragS *fragP; /* Track along all frags. */
252b5132
RH
2073#endif
2074
85024cd8
AM
2075 subsegs_finish ();
2076
16a87420
IS
2077#ifdef md_pre_output_hook
2078 md_pre_output_hook;
2079#endif
2080
cdaa5616
IS
2081#ifdef md_pre_relax_hook
2082 md_pre_relax_hook;
2083#endif
2084
252b5132 2085 /* From now on, we don't care about sub-segments. Build one frag chain
2b0f3761 2086 for each segment. Linked through fr_next. */
252b5132 2087
252b5132
RH
2088 /* Remove the sections created by gas for its own purposes. */
2089 {
252b5132
RH
2090 int i;
2091
5daa8fe7
L
2092 bfd_section_list_remove (stdoutput, reg_section);
2093 bfd_section_list_remove (stdoutput, expr_section);
2094 stdoutput->section_count -= 2;
252b5132
RH
2095 i = 0;
2096 bfd_map_over_sections (stdoutput, renumber_sections, &i);
2097 }
2098
2099 bfd_map_over_sections (stdoutput, chain_frchains_together, (char *) 0);
252b5132
RH
2100
2101 /* We have two segments. If user gave -R flag, then we must put the
2102 data frags into the text segment. Do this before relaxing so
2103 we know to take advantage of -R and make shorter addresses. */
252b5132
RH
2104 if (flag_readonly_data_in_text)
2105 {
2106 merge_data_into_text ();
2107 }
252b5132 2108
32638454 2109 rsi.pass = 0;
e46d99eb
AM
2110 while (1)
2111 {
aacb5251
HPN
2112#ifndef WORKING_DOT_WORD
2113 /* We need to reset the markers in the broken word list and
2114 associated frags between calls to relax_segment (via
2115 relax_seg). Since the broken word list is global, we do it
2116 once per round, rather than locally in relax_segment for each
2117 segment. */
2118 struct broken_word *brokp;
2119
2120 for (brokp = broken_words;
2121 brokp != (struct broken_word *) NULL;
2122 brokp = brokp->next_broken_word)
2123 {
2124 brokp->added = 0;
2125
2126 if (brokp->dispfrag != (fragS *) NULL
2127 && brokp->dispfrag->fr_type == rs_broken_word)
2128 brokp->dispfrag->fr_subtype = 0;
2129 }
2130#endif
2131
32638454
AM
2132 rsi.changed = 0;
2133 bfd_map_over_sections (stdoutput, relax_seg, &rsi);
2134 rsi.pass++;
2135 if (!rsi.changed)
e46d99eb
AM
2136 break;
2137 }
e027f3e8 2138
87548816
NC
2139 /* Note - Most ports will use the default value of
2140 TC_FINALIZE_SYMS_BEFORE_SIZE_SEG, which 1. This will force
2141 local symbols to be resolved, removing their frag information.
2142 Some ports however, will not have finished relaxing all of
2143 their frags and will still need the local symbol frag
2144 information. These ports can set
2145 TC_FINALIZE_SYMS_BEFORE_SIZE_SEG to 0. */
2146 finalize_syms = TC_FINALIZE_SYMS_BEFORE_SIZE_SEG;
2147
e46d99eb 2148 bfd_map_over_sections (stdoutput, size_seg, (char *) 0);
e46d99eb 2149
38b87a1b
NC
2150 /* Relaxation has completed. Freeze all syms. */
2151 finalize_syms = 1;
2152
ba8826a8
AO
2153 dwarf2dbg_final_check ();
2154
e0001a05
NC
2155#ifdef md_post_relax_hook
2156 md_post_relax_hook;
2157#endif
2158
d98b0e2b
TG
2159#ifdef OBJ_ELF
2160 if (IS_ELF)
2161 create_obj_attrs_section ();
2162#endif
2163
252b5132
RH
2164#ifndef WORKING_DOT_WORD
2165 {
2166 struct broken_word *lie;
2167 struct broken_word **prevP;
2168
2169 prevP = &broken_words;
2170 for (lie = broken_words; lie; lie = lie->next_broken_word)
2171 if (!lie->added)
2172 {
2173 expressionS exp;
2174
2175 subseg_change (lie->seg, lie->subseg);
2176 exp.X_op = O_subtract;
2177 exp.X_add_symbol = lie->add;
2178 exp.X_op_symbol = lie->sub;
2179 exp.X_add_number = lie->addnum;
252b5132
RH
2180#ifdef TC_CONS_FIX_NEW
2181 TC_CONS_FIX_NEW (lie->frag,
efaf0ba4 2182 lie->word_goes_here - lie->frag->fr_literal,
62ebcb5c 2183 2, &exp, TC_PARSE_CONS_RETURN_NONE);
252b5132
RH
2184#else
2185 fix_new_exp (lie->frag,
2186 lie->word_goes_here - lie->frag->fr_literal,
2187 2, &exp, 0, BFD_RELOC_16);
2188#endif
252b5132
RH
2189 *prevP = lie->next_broken_word;
2190 }
2191 else
2192 prevP = &(lie->next_broken_word);
2193
2194 for (lie = broken_words; lie;)
2195 {
2196 struct broken_word *untruth;
2197 char *table_ptr;
2198 addressT table_addr;
2199 addressT from_addr, to_addr;
2200 int n, m;
2201
2202 subseg_change (lie->seg, lie->subseg);
2203 fragP = lie->dispfrag;
2204
2205 /* Find out how many broken_words go here. */
2206 n = 0;
efaf0ba4
NC
2207 for (untruth = lie;
2208 untruth && untruth->dispfrag == fragP;
2209 untruth = untruth->next_broken_word)
252b5132
RH
2210 if (untruth->added == 1)
2211 n++;
2212
2213 table_ptr = lie->dispfrag->fr_opcode;
efaf0ba4
NC
2214 table_addr = (lie->dispfrag->fr_address
2215 + (table_ptr - lie->dispfrag->fr_literal));
252b5132
RH
2216 /* Create the jump around the long jumps. This is a short
2217 jump from table_ptr+0 to table_ptr+n*long_jump_size. */
2218 from_addr = table_addr;
2219 to_addr = table_addr + md_short_jump_size + n * md_long_jump_size;
efaf0ba4
NC
2220 md_create_short_jump (table_ptr, from_addr, to_addr, lie->dispfrag,
2221 lie->add);
252b5132
RH
2222 table_ptr += md_short_jump_size;
2223 table_addr += md_short_jump_size;
2224
efaf0ba4
NC
2225 for (m = 0;
2226 lie && lie->dispfrag == fragP;
2227 m++, lie = lie->next_broken_word)
252b5132
RH
2228 {
2229 if (lie->added == 2)
2230 continue;
efaf0ba4 2231 /* Patch the jump table. */
187af7df 2232 for (untruth = (struct broken_word *) (fragP->fr_symbol);
efaf0ba4
NC
2233 untruth && untruth->dispfrag == fragP;
2234 untruth = untruth->next_broken_word)
252b5132
RH
2235 {
2236 if (untruth->use_jump == lie)
187af7df
HPN
2237 {
2238 /* This is the offset from ??? to table_ptr+0.
2239 The target is the same for all users of this
2240 md_long_jump, but the "sub" bases (and hence the
2241 offsets) may be different. */
2242 addressT to_word = table_addr - S_GET_VALUE (untruth->sub);
2243#ifdef TC_CHECK_ADJUSTED_BROKEN_DOT_WORD
2244 TC_CHECK_ADJUSTED_BROKEN_DOT_WORD (to_word, untruth);
2245#endif
2246 md_number_to_chars (untruth->word_goes_here, to_word, 2);
2247 }
252b5132
RH
2248 }
2249
efaf0ba4
NC
2250 /* Install the long jump. */
2251 /* This is a long jump from table_ptr+0 to the final target. */
252b5132
RH
2252 from_addr = table_addr;
2253 to_addr = S_GET_VALUE (lie->add) + lie->addnum;
efaf0ba4
NC
2254 md_create_long_jump (table_ptr, from_addr, to_addr, lie->dispfrag,
2255 lie->add);
252b5132
RH
2256 table_ptr += md_long_jump_size;
2257 table_addr += md_long_jump_size;
2258 }
2259 }
2260 }
efaf0ba4 2261#endif /* not WORKING_DOT_WORD */
252b5132 2262
252b5132
RH
2263 /* Resolve symbol values. This needs to be done before processing
2264 the relocations. */
2265 if (symbol_rootP)
2266 {
2267 symbolS *symp;
2268
2269 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
6386f3a7 2270 resolve_symbol_value (symp);
252b5132 2271 }
49309057 2272 resolve_local_symbol_values ();
05e9452c 2273 resolve_reloc_expr_symbols ();
252b5132 2274
0df8ad28
NC
2275#ifdef OBJ_ELF
2276 if (IS_ELF)
2277 maybe_generate_build_notes ();
2278#endif
2279
252b5132
RH
2280 PROGRESS (1);
2281
2282#ifdef tc_frob_file_before_adjust
2283 tc_frob_file_before_adjust ();
2284#endif
2285#ifdef obj_frob_file_before_adjust
2286 obj_frob_file_before_adjust ();
2287#endif
2288
efaf0ba4 2289 bfd_map_over_sections (stdoutput, adjust_reloc_syms, (char *) 0);
252b5132 2290
a161fe53
AM
2291#ifdef tc_frob_file_before_fix
2292 tc_frob_file_before_fix ();
2293#endif
2294#ifdef obj_frob_file_before_fix
2295 obj_frob_file_before_fix ();
2296#endif
2297
2298 bfd_map_over_sections (stdoutput, fix_segment, (char *) 0);
2299
252b5132
RH
2300 /* Set up symbol table, and write it out. */
2301 if (symbol_rootP)
2302 {
2303 symbolS *symp;
aaac53f5 2304 bfd_boolean skip_next_symbol = FALSE;
252b5132
RH
2305
2306 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
2307 {
2308 int punt = 0;
2309 const char *name;
2310
aaac53f5
HPN
2311 if (skip_next_symbol)
2312 {
2313 /* Don't do anything besides moving the value of the
2314 symbol from the GAS value-field to the BFD value-field. */
2315 symbol_get_bfdsym (symp)->value = S_GET_VALUE (symp);
2316 skip_next_symbol = FALSE;
2317 continue;
2318 }
2319
49309057 2320 if (symbol_mri_common_p (symp))
252b5132
RH
2321 {
2322 if (S_IS_EXTERNAL (symp))
2323 as_bad (_("%s: global symbols not supported in common sections"),
2324 S_GET_NAME (symp));
2325 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
2326 continue;
2327 }
2328
2329 name = S_GET_NAME (symp);
2330 if (name)
2331 {
efaf0ba4
NC
2332 const char *name2 =
2333 decode_local_label_name ((char *) S_GET_NAME (symp));
252b5132
RH
2334 /* They only differ if `name' is a fb or dollar local
2335 label name. */
2336 if (name2 != name && ! S_IS_DEFINED (symp))
0e389e77 2337 as_bad (_("local label `%s' is not defined"), name2);
252b5132
RH
2338 }
2339
2340 /* Do it again, because adjust_reloc_syms might introduce
2341 more symbols. They'll probably only be section symbols,
2342 but they'll still need to have the values computed. */
6386f3a7 2343 resolve_symbol_value (symp);
252b5132
RH
2344
2345 /* Skip symbols which were equated to undefined or common
b4b24b79 2346 symbols. */
06e77878
AO
2347 if (symbol_equated_reloc_p (symp)
2348 || S_IS_WEAKREFR (symp))
252b5132 2349 {
91d6fa6a
NC
2350 const char *sname = S_GET_NAME (symp);
2351
60938e80 2352 if (S_IS_COMMON (symp)
91d6fa6a 2353 && !TC_FAKE_LABEL (sname)
76db0a2e 2354 && !S_IS_WEAKREFR (symp))
60938e80
L
2355 {
2356 expressionS *e = symbol_get_value_expression (symp);
91d6fa6a 2357
76db0a2e 2358 as_bad (_("`%s' can't be equated to common symbol `%s'"),
91d6fa6a 2359 sname, S_GET_NAME (e->X_add_symbol));
60938e80 2360 }
d0548f34
L
2361 if (S_GET_SEGMENT (symp) == reg_section)
2362 {
2363 /* Report error only if we know the symbol name. */
2364 if (S_GET_NAME (symp) != reg_section->name)
2365 as_bad (_("can't make global register symbol `%s'"),
91d6fa6a 2366 sname);
d0548f34 2367 }
252b5132
RH
2368 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
2369 continue;
2370 }
2371
252b5132
RH
2372#ifdef obj_frob_symbol
2373 obj_frob_symbol (symp, punt);
2374#endif
2375#ifdef tc_frob_symbol
49309057 2376 if (! punt || symbol_used_in_reloc_p (symp))
252b5132
RH
2377 tc_frob_symbol (symp, punt);
2378#endif
2379
2380 /* If we don't want to keep this symbol, splice it out of
2381 the chain now. If EMIT_SECTION_SYMBOLS is 0, we never
2382 want section symbols. Otherwise, we skip local symbols
2383 and symbols that the frob_symbol macros told us to punt,
2384 but we keep such symbols if they are used in relocs. */
a161fe53
AM
2385 if (symp == abs_section_sym
2386 || (! EMIT_SECTION_SYMBOLS
2387 && symbol_section_p (symp))
e97b3f28 2388 /* Note that S_IS_EXTERNAL and S_IS_LOCAL are not always
252b5132
RH
2389 opposites. Sometimes the former checks flags and the
2390 latter examines the name... */
e97b3f28 2391 || (!S_IS_EXTERNAL (symp)
461b725f
AO
2392 && (punt || S_IS_LOCAL (symp) ||
2393 (S_IS_WEAKREFD (symp) && ! symbol_used_p (symp)))
49309057 2394 && ! symbol_used_in_reloc_p (symp)))
252b5132
RH
2395 {
2396 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
efaf0ba4 2397
252b5132
RH
2398 /* After symbol_remove, symbol_next(symp) still returns
2399 the one that came after it in the chain. So we don't
2400 need to do any extra cleanup work here. */
252b5132
RH
2401 continue;
2402 }
2403
2404 /* Make sure we really got a value for the symbol. */
49309057 2405 if (! symbol_resolved_p (symp))
252b5132 2406 {
0e389e77 2407 as_bad (_("can't resolve value for symbol `%s'"),
252b5132 2408 S_GET_NAME (symp));
49309057 2409 symbol_mark_resolved (symp);
252b5132
RH
2410 }
2411
2412 /* Set the value into the BFD symbol. Up til now the value
2413 has only been kept in the gas symbolS struct. */
49309057 2414 symbol_get_bfdsym (symp)->value = S_GET_VALUE (symp);
aaac53f5
HPN
2415
2416 /* A warning construct is a warning symbol followed by the
2417 symbol warned about. Don't let anything object-format or
2418 target-specific muck with it; it's ready for output. */
2419 if (symbol_get_bfdsym (symp)->flags & BSF_WARNING)
2420 skip_next_symbol = TRUE;
252b5132
RH
2421 }
2422 }
2423
2424 PROGRESS (1);
2425
2426 /* Now do any format-specific adjustments to the symbol table, such
2427 as adding file symbols. */
2428#ifdef tc_adjust_symtab
2429 tc_adjust_symtab ();
2430#endif
2431#ifdef obj_adjust_symtab
2432 obj_adjust_symtab ();
2433#endif
2434
d0548f34
L
2435 /* Stop if there is an error. */
2436 if (had_errors ())
2437 return;
2438
252b5132
RH
2439 /* Now that all the sizes are known, and contents correct, we can
2440 start writing to the file. */
2ae08483 2441 set_symtab ();
252b5132
RH
2442
2443 /* If *_frob_file changes the symbol value at this point, it is
2444 responsible for moving the changed value into symp->bsym->value
2445 as well. Hopefully all symbol value changing can be done in
2446 *_frob_symbol. */
2447#ifdef tc_frob_file
2448 tc_frob_file ();
2449#endif
2450#ifdef obj_frob_file
2451 obj_frob_file ();
2452#endif
f3d2b04b
KT
2453#ifdef obj_coff_generate_pdata
2454 obj_coff_generate_pdata ();
2455#endif
0df8ad28 2456
252b5132
RH
2457 bfd_map_over_sections (stdoutput, write_relocs, (char *) 0);
2458
f1c2d4af 2459#ifdef tc_frob_file_after_relocs
252b5132
RH
2460 tc_frob_file_after_relocs ();
2461#endif
2462#ifdef obj_frob_file_after_relocs
2463 obj_frob_file_after_relocs ();
2464#endif
f1c2d4af 2465
b8871f35
L
2466#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
2467 if (IS_ELF && flag_use_elf_stt_common)
2468 stdoutput->flags |= BFD_CONVERT_ELF_COMMON | BFD_USE_ELF_STT_COMMON;
2469#endif
2470
0acf065b
CC
2471 /* Once all relocations have been written, we can compress the
2472 contents of the debug sections. This needs to be done before
2473 we start writing any sections, because it will affect the file
2474 layout, which is fixed once we start writing contents. */
2475 if (flag_compress_debug)
8ecb73dd
L
2476 {
2477 if (flag_compress_debug == COMPRESS_DEBUG_GABI_ZLIB)
2478 stdoutput->flags |= BFD_COMPRESS | BFD_COMPRESS_GABI;
2479 else
2480 stdoutput->flags |= BFD_COMPRESS;
2481 bfd_map_over_sections (stdoutput, compress_debug, (char *) 0);
2482 }
0acf065b 2483
252b5132 2484 bfd_map_over_sections (stdoutput, write_contents, (char *) 0);
252b5132 2485}
252b5132
RH
2486
2487#ifdef TC_GENERIC_RELAX_TABLE
252b5132
RH
2488/* Relax a fragment by scanning TC_GENERIC_RELAX_TABLE. */
2489
2490long
d7342424 2491relax_frag (segT segment, fragS *fragP, long stretch)
252b5132
RH
2492{
2493 const relax_typeS *this_type;
2494 const relax_typeS *start_type;
2495 relax_substateT next_state;
2496 relax_substateT this_state;
685736be 2497 offsetT growth;
38686296
AM
2498 offsetT aim;
2499 addressT target;
2500 addressT address;
2501 symbolS *symbolP;
2502 const relax_typeS *table;
2503
2504 target = fragP->fr_offset;
2505 address = fragP->fr_address;
2506 table = TC_GENERIC_RELAX_TABLE;
252b5132
RH
2507 this_state = fragP->fr_subtype;
2508 start_type = this_type = table + this_state;
38686296 2509 symbolP = fragP->fr_symbol;
252b5132
RH
2510
2511 if (symbolP)
2512 {
c842b53a
ILT
2513 fragS *sym_frag;
2514
2515 sym_frag = symbol_get_frag (symbolP);
2516
252b5132 2517#ifndef DIFF_EXPR_OK
c842b53a 2518 know (sym_frag != NULL);
252b5132 2519#endif
a161fe53 2520 know (S_GET_SEGMENT (symbolP) != absolute_section
c842b53a 2521 || sym_frag == &zero_address_frag);
ac62c346 2522 target += S_GET_VALUE (symbolP);
252b5132 2523
e35a414d
AM
2524 /* If SYM_FRAG has yet to be reached on this pass, assume it
2525 will move by STRETCH just as we did, unless there is an
2526 alignment frag between here and SYM_FRAG. An alignment may
2527 well absorb any STRETCH, and we don't want to choose a larger
2528 branch insn by overestimating the needed reach of this
2529 branch. It isn't critical to calculate TARGET exactly; We
2530 know we'll be doing another pass if STRETCH is non-zero. */
252b5132 2531
c842b53a 2532 if (stretch != 0
38686296
AM
2533 && sym_frag->relax_marker != fragP->relax_marker
2534 && S_GET_SEGMENT (symbolP) == segment)
252b5132 2535 {
e35a414d
AM
2536 if (stretch < 0
2537 || sym_frag->region == fragP->region)
2538 target += stretch;
e5940dff
AM
2539 /* If we get here we know we have a forward branch. This
2540 relax pass may have stretched previous instructions so
2541 far that omitting STRETCH would make the branch
2542 negative. Don't allow this in case the negative reach is
2543 large enough to require a larger branch instruction. */
2544 else if (target < address)
2545 target = fragP->fr_next->fr_address + stretch;
252b5132
RH
2546 }
2547 }
2548
2549 aim = target - address - fragP->fr_fix;
2550#ifdef TC_PCREL_ADJUST
efaf0ba4
NC
2551 /* Currently only the ns32k family needs this. */
2552 aim += TC_PCREL_ADJUST (fragP);
efaf0ba4 2553#endif
59c871b4
BE
2554
2555#ifdef md_prepare_relax_scan
2556 /* Formerly called M68K_AIM_KLUDGE. */
252b5132
RH
2557 md_prepare_relax_scan (fragP, address, aim, this_state, this_type);
2558#endif
2559
2560 if (aim < 0)
2561 {
efaf0ba4 2562 /* Look backwards. */
252b5132
RH
2563 for (next_state = this_type->rlx_more; next_state;)
2564 if (aim >= this_type->rlx_backward)
2565 next_state = 0;
2566 else
2567 {
efaf0ba4 2568 /* Grow to next state. */
252b5132
RH
2569 this_state = next_state;
2570 this_type = table + this_state;
2571 next_state = this_type->rlx_more;
2572 }
2573 }
2574 else
2575 {
efaf0ba4 2576 /* Look forwards. */
252b5132
RH
2577 for (next_state = this_type->rlx_more; next_state;)
2578 if (aim <= this_type->rlx_forward)
2579 next_state = 0;
2580 else
2581 {
efaf0ba4 2582 /* Grow to next state. */
252b5132
RH
2583 this_state = next_state;
2584 this_type = table + this_state;
2585 next_state = this_type->rlx_more;
2586 }
2587 }
2588
2589 growth = this_type->rlx_length - start_type->rlx_length;
2590 if (growth != 0)
2591 fragP->fr_subtype = this_state;
2592 return growth;
2593}
2594
efaf0ba4 2595#endif /* defined (TC_GENERIC_RELAX_TABLE) */
252b5132
RH
2596
2597/* Relax_align. Advance location counter to next address that has 'alignment'
2598 lowest order bits all 0s, return size of adjustment made. */
2599static relax_addressT
ed9e98c2
AM
2600relax_align (relax_addressT address, /* Address now. */
2601 int alignment /* Alignment (binary). */)
252b5132
RH
2602{
2603 relax_addressT mask;
2604 relax_addressT new_address;
2605
65879393 2606 mask = ~((relax_addressT) ~0 << alignment);
252b5132
RH
2607 new_address = (address + mask) & (~mask);
2608#ifdef LINKER_RELAXING_SHRINKS_ONLY
2609 if (linkrelax)
2610 /* We must provide lots of padding, so the linker can discard it
2611 when needed. The linker will not add extra space, ever. */
2612 new_address += (1 << alignment);
2613#endif
2614 return (new_address - address);
2615}
2616
efaf0ba4
NC
2617/* Now we have a segment, not a crowd of sub-segments, we can make
2618 fr_address values.
58a77e41 2619
efaf0ba4 2620 Relax the frags.
58a77e41 2621
efaf0ba4
NC
2622 After this, all frags in this segment have addresses that are correct
2623 within the segment. Since segments live in different file addresses,
2624 these frag addresses may not be the same as final object-file
2625 addresses. */
2626
e46d99eb 2627int
32638454 2628relax_segment (struct frag *segment_frag_root, segT segment, int pass)
252b5132 2629{
4111faa5
NC
2630 unsigned long frag_count;
2631 struct frag *fragP;
2632 relax_addressT address;
e35a414d 2633 int region;
e46d99eb
AM
2634 int ret;
2635
efaf0ba4 2636 /* In case md_estimate_size_before_relax() wants to make fixSs. */
252b5132
RH
2637 subseg_change (segment, 0);
2638
2639 /* For each frag in segment: count and store (a 1st guess of)
2640 fr_address. */
2641 address = 0;
e35a414d 2642 region = 0;
4111faa5
NC
2643 for (frag_count = 0, fragP = segment_frag_root;
2644 fragP;
2645 fragP = fragP->fr_next, frag_count ++)
252b5132 2646 {
e35a414d 2647 fragP->region = region;
38686296 2648 fragP->relax_marker = 0;
252b5132
RH
2649 fragP->fr_address = address;
2650 address += fragP->fr_fix;
2651
2652 switch (fragP->fr_type)
2653 {
2654 case rs_fill:
2655 address += fragP->fr_offset * fragP->fr_var;
2656 break;
2657
2658 case rs_align:
2659 case rs_align_code:
0a9ef439 2660 case rs_align_test:
252b5132
RH
2661 {
2662 addressT offset = relax_align (address, (int) fragP->fr_offset);
2663
2664 if (fragP->fr_subtype != 0 && offset > fragP->fr_subtype)
2665 offset = 0;
2666
2667 if (offset % fragP->fr_var != 0)
2668 {
54d3cad9 2669 as_bad_where (fragP->fr_file, fragP->fr_line,
992a06ee
AM
2670 ngettext ("alignment padding (%lu byte) "
2671 "not a multiple of %ld",
2672 "alignment padding (%lu bytes) "
2673 "not a multiple of %ld",
2674 (unsigned long) offset),
54d3cad9 2675 (unsigned long) offset, (long) fragP->fr_var);
252b5132
RH
2676 offset -= (offset % fragP->fr_var);
2677 }
2678
2679 address += offset;
e35a414d 2680 region += 1;
252b5132
RH
2681 }
2682 break;
2683
2684 case rs_org:
252b5132 2685 /* Assume .org is nugatory. It will grow with 1st relax. */
e35a414d
AM
2686 region += 1;
2687 break;
2688
2689 case rs_space:
62a02d25 2690 case rs_space_nop:
252b5132
RH
2691 break;
2692
2693 case rs_machine_dependent:
e0890092
AM
2694 /* If fr_symbol is an expression, this call to
2695 resolve_symbol_value sets up the correct segment, which will
2696 likely be needed in md_estimate_size_before_relax. */
2697 if (fragP->fr_symbol)
2698 resolve_symbol_value (fragP->fr_symbol);
2699
252b5132
RH
2700 address += md_estimate_size_before_relax (fragP, segment);
2701 break;
2702
2703#ifndef WORKING_DOT_WORD
efaf0ba4 2704 /* Broken words don't concern us yet. */
252b5132
RH
2705 case rs_broken_word:
2706 break;
2707#endif
2708
2709 case rs_leb128:
efaf0ba4 2710 /* Initial guess is always 1; doing otherwise can result in
252b5132
RH
2711 stable solutions that are larger than the minimum. */
2712 address += fragP->fr_offset = 1;
2713 break;
2714
2715 case rs_cfa:
2716 address += eh_frame_estimate_size_before_relax (fragP);
2717 break;
2718
220e750f
RH
2719 case rs_dwarf2dbg:
2720 address += dwarf2dbg_estimate_size_before_relax (fragP);
2721 break;
2722
252b5132
RH
2723 default:
2724 BAD_CASE (fragP->fr_type);
2725 break;
efaf0ba4
NC
2726 }
2727 }
252b5132
RH
2728
2729 /* Do relax(). */
2730 {
4111faa5 2731 unsigned long max_iterations;
d1c5f158
AM
2732
2733 /* Cumulative address adjustment. */
2734 offsetT stretch;
2735
2736 /* Have we made any adjustment this pass? We can't just test
2737 stretch because one piece of code may have grown and another
2738 shrank. */
2739 int stretched;
2740
2741 /* Most horrible, but gcc may give us some exception data that
2742 is impossible to assemble, of the form
2743
2744 .align 4
2745 .byte 0, 0
2746 .uleb128 end - start
2747 start:
2748 .space 128*128 - 1
2749 .align 4
2750 end:
2751
2752 If the leb128 is two bytes in size, then end-start is 128*128,
2753 which requires a three byte leb128. If the leb128 is three
2754 bytes in size, then end-start is 128*128-1, which requires a
2755 two byte leb128. We work around this dilemma by inserting
2756 an extra 4 bytes of alignment just after the .align. This
2757 works because the data after the align is accessed relative to
2758 the end label.
2759
2760 This counter is used in a tiny state machine to detect
2761 whether a leb128 followed by an align is impossible to
2762 relax. */
2763 int rs_leb128_fudge = 0;
252b5132 2764
4111faa5
NC
2765 /* We want to prevent going into an infinite loop where one frag grows
2766 depending upon the location of a symbol which is in turn moved by
2767 the growing frag. eg:
2768
b4b24b79
AM
2769 foo = .
2770 .org foo+16
2771 foo = .
4111faa5 2772
b4b24b79 2773 So we dictate that this algorithm can be at most O2. */
4111faa5
NC
2774 max_iterations = frag_count * frag_count;
2775 /* Check for overflow. */
2776 if (max_iterations < frag_count)
2777 max_iterations = frag_count;
2778
32638454 2779 ret = 0;
252b5132
RH
2780 do
2781 {
e46d99eb
AM
2782 stretch = 0;
2783 stretched = 0;
58a77e41 2784
252b5132
RH
2785 for (fragP = segment_frag_root; fragP; fragP = fragP->fr_next)
2786 {
685736be 2787 offsetT growth = 0;
252b5132
RH
2788 addressT was_address;
2789 offsetT offset;
2790 symbolS *symbolP;
2791
38686296 2792 fragP->relax_marker ^= 1;
252b5132
RH
2793 was_address = fragP->fr_address;
2794 address = fragP->fr_address += stretch;
2795 symbolP = fragP->fr_symbol;
2796 offset = fragP->fr_offset;
2797
2798 switch (fragP->fr_type)
2799 {
efaf0ba4 2800 case rs_fill: /* .fill never relaxes. */
252b5132
RH
2801 growth = 0;
2802 break;
2803
2804#ifndef WORKING_DOT_WORD
2805 /* JF: This is RMS's idea. I do *NOT* want to be blamed
2806 for it I do not want to write it. I do not want to have
2807 anything to do with it. This is not the proper way to
2808 implement this misfeature. */
2809 case rs_broken_word:
2810 {
2811 struct broken_word *lie;
2812 struct broken_word *untruth;
2813
2814 /* Yes this is ugly (storing the broken_word pointer
2815 in the symbol slot). Still, this whole chunk of
2816 code is ugly, and I don't feel like doing anything
2817 about it. Think of it as stubbornness in action. */
2818 growth = 0;
2819 for (lie = (struct broken_word *) (fragP->fr_symbol);
2820 lie && lie->dispfrag == fragP;
2821 lie = lie->next_broken_word)
2822 {
2823
2824 if (lie->added)
2825 continue;
2826
ac62c346 2827 offset = (S_GET_VALUE (lie->add)
252b5132 2828 + lie->addnum
ac62c346 2829 - S_GET_VALUE (lie->sub));
252b5132
RH
2830 if (offset <= -32768 || offset >= 32767)
2831 {
2832 if (flag_warn_displacement)
2833 {
2834 char buf[50];
2835 sprint_value (buf, (addressT) lie->addnum);
54d3cad9
AM
2836 as_warn_where (fragP->fr_file, fragP->fr_line,
2837 _(".word %s-%s+%s didn't fit"),
2838 S_GET_NAME (lie->add),
2839 S_GET_NAME (lie->sub),
2840 buf);
252b5132 2841 }
252b5132
RH
2842 if (fragP->fr_subtype == 0)
2843 {
2844 fragP->fr_subtype++;
2845 growth += md_short_jump_size;
2846 }
187af7df
HPN
2847
2848 /* Redirect *all* words of this table with the same
2849 target, lest we have to handle the case where the
2850 same target but with a offset that fits on this
2851 round overflows at the next relaxation round. */
2852 for (untruth = (struct broken_word *) (fragP->fr_symbol);
252b5132
RH
2853 untruth && untruth->dispfrag == lie->dispfrag;
2854 untruth = untruth->next_broken_word)
49309057
ILT
2855 if ((symbol_get_frag (untruth->add)
2856 == symbol_get_frag (lie->add))
2857 && (S_GET_VALUE (untruth->add)
2858 == S_GET_VALUE (lie->add)))
252b5132
RH
2859 {
2860 untruth->added = 2;
2861 untruth->use_jump = lie;
2862 }
187af7df
HPN
2863
2864 lie->added = 1;
252b5132
RH
2865 growth += md_long_jump_size;
2866 }
2867 }
2868
2869 break;
efaf0ba4 2870 } /* case rs_broken_word */
252b5132
RH
2871#endif
2872 case rs_align:
2873 case rs_align_code:
0a9ef439 2874 case rs_align_test:
252b5132
RH
2875 {
2876 addressT oldoff, newoff;
2877
2878 oldoff = relax_align (was_address + fragP->fr_fix,
2879 (int) offset);
2880 newoff = relax_align (address + fragP->fr_fix,
2881 (int) offset);
2882
2883 if (fragP->fr_subtype != 0)
2884 {
2885 if (oldoff > fragP->fr_subtype)
2886 oldoff = 0;
2887 if (newoff > fragP->fr_subtype)
2888 newoff = 0;
2889 }
2890
2891 growth = newoff - oldoff;
d1c5f158
AM
2892
2893 /* If this align happens to follow a leb128 and
2894 we have determined that the leb128 is bouncing
2895 in size, then break the cycle by inserting an
2896 extra alignment. */
2897 if (growth < 0
2898 && (rs_leb128_fudge & 16) != 0
2899 && (rs_leb128_fudge & 15) >= 2)
2900 {
2901 segment_info_type *seginfo = seg_info (segment);
2902 struct obstack *ob = &seginfo->frchainP->frch_obstack;
2903 struct frag *newf;
2904
2905 newf = frag_alloc (ob);
2906 obstack_blank_fast (ob, fragP->fr_var);
2907 obstack_finish (ob);
2908 memcpy (newf, fragP, SIZEOF_STRUCT_FRAG);
2909 memcpy (newf->fr_literal,
2910 fragP->fr_literal + fragP->fr_fix,
2911 fragP->fr_var);
2912 newf->fr_type = rs_fill;
20f5cfbd 2913 newf->fr_address = address + fragP->fr_fix + newoff;
d1c5f158
AM
2914 newf->fr_fix = 0;
2915 newf->fr_offset = (((offsetT) 1 << fragP->fr_offset)
2916 / fragP->fr_var);
2917 if (newf->fr_offset * newf->fr_var
2918 != (offsetT) 1 << fragP->fr_offset)
2919 {
2920 newf->fr_offset = (offsetT) 1 << fragP->fr_offset;
2921 newf->fr_var = 1;
2922 }
20f5cfbd 2923 /* Include size of new frag in GROWTH. */
d1c5f158 2924 growth += newf->fr_offset * newf->fr_var;
20f5cfbd
AM
2925 /* Adjust the new frag address for the amount
2926 we'll add when we process the new frag. */
2927 newf->fr_address -= stretch + growth;
d1c5f158
AM
2928 newf->relax_marker ^= 1;
2929 fragP->fr_next = newf;
2930#ifdef DEBUG
2931 as_warn (_("padding added"));
2932#endif
2933 }
252b5132
RH
2934 }
2935 break;
2936
2937 case rs_org:
2938 {
e46d99eb
AM
2939 addressT target = offset;
2940 addressT after;
252b5132
RH
2941
2942 if (symbolP)
2943 {
b4b24b79
AM
2944 /* Convert from an actual address to an octet offset
2945 into the section. Here it is assumed that the
2946 section's VMA is zero, and can omit subtracting it
2947 from the symbol's value to get the address offset. */
2948 know (S_GET_SEGMENT (symbolP)->vma == 0);
6e917903 2949 target += S_GET_VALUE (symbolP) * OCTETS_PER_BYTE;
ac62c346 2950 }
252b5132
RH
2951
2952 know (fragP->fr_next);
6afe8e98 2953 after = fragP->fr_next->fr_address + stretch;
252b5132 2954 growth = target - after;
9875b365
MR
2955
2956 /* Growth may be negative, but variable part of frag
2957 cannot have fewer than 0 chars. That is, we can't
2958 .org backwards. */
2959 if (address + fragP->fr_fix > target)
252b5132 2960 {
32638454
AM
2961 growth = 0;
2962
2963 /* Don't error on first few frag relax passes.
2964 The symbol might be an expression involving
2965 symbol values from other sections. If those
2966 sections have not yet been processed their
2967 frags will all have zero addresses, so we
2968 will calculate incorrect values for them. The
2969 number of passes we allow before giving an
2970 error is somewhat arbitrary. It should be at
2971 least one, with larger values requiring
2972 increasingly contrived dependencies between
2973 frags to trigger a false error. */
2974 if (pass < 2)
2975 {
2976 /* Force another pass. */
2977 ret = 1;
2978 break;
2979 }
2980
14ad458a 2981 as_bad_where (fragP->fr_file, fragP->fr_line,
685736be 2982 _("attempt to move .org backwards"));
14ad458a
ILT
2983
2984 /* We've issued an error message. Change the
b4b24b79 2985 frag to avoid cascading errors. */
14ad458a
ILT
2986 fragP->fr_type = rs_align;
2987 fragP->fr_subtype = 0;
2988 fragP->fr_offset = 0;
6afe8e98 2989 fragP->fr_fix = after - address;
252b5132 2990 }
252b5132 2991 }
6afe8e98 2992 break;
252b5132
RH
2993
2994 case rs_space:
62a02d25 2995 case rs_space_nop:
54d3cad9 2996 growth = 0;
252b5132
RH
2997 if (symbolP)
2998 {
766c03c9
AM
2999 offsetT amount;
3000
3001 amount = S_GET_VALUE (symbolP);
9e40345d 3002 if (S_GET_SEGMENT (symbolP) != absolute_section
252b5132
RH
3003 || S_IS_COMMON (symbolP)
3004 || ! S_IS_DEFINED (symbolP))
252b5132 3005 {
54d3cad9
AM
3006 as_bad_where (fragP->fr_file, fragP->fr_line,
3007 _(".space specifies non-absolute value"));
3008 /* Prevent repeat of this error message. */
3009 fragP->fr_symbol = 0;
3010 }
3011 else if (amount < 0)
3012 {
32638454
AM
3013 /* Don't error on first few frag relax passes.
3014 See rs_org comment for a longer explanation. */
3015 if (pass < 2)
3016 {
3017 ret = 1;
3018 break;
3019 }
3020
54d3cad9 3021 as_warn_where (fragP->fr_file, fragP->fr_line,
8f065d3b 3022 _(".space, .nops or .fill with negative value, ignored"));
766c03c9 3023 fragP->fr_symbol = 0;
252b5132 3024 }
54d3cad9 3025 else
050be34e 3026 growth = (was_address + fragP->fr_fix + amount
54d3cad9 3027 - fragP->fr_next->fr_address);
252b5132 3028 }
252b5132
RH
3029 break;
3030
3031 case rs_machine_dependent:
3032#ifdef md_relax_frag
c842b53a 3033 growth = md_relax_frag (segment, fragP, stretch);
252b5132
RH
3034#else
3035#ifdef TC_GENERIC_RELAX_TABLE
3036 /* The default way to relax a frag is to look through
3037 TC_GENERIC_RELAX_TABLE. */
c842b53a 3038 growth = relax_frag (segment, fragP, stretch);
efaf0ba4 3039#endif /* TC_GENERIC_RELAX_TABLE */
252b5132
RH
3040#endif
3041 break;
3042
3043 case rs_leb128:
3044 {
3045 valueT value;
685736be 3046 offsetT size;
252b5132 3047
6386f3a7 3048 value = resolve_symbol_value (fragP->fr_symbol);
252b5132
RH
3049 size = sizeof_leb128 (value, fragP->fr_subtype);
3050 growth = size - fragP->fr_offset;
3051 fragP->fr_offset = size;
3052 }
3053 break;
3054
3055 case rs_cfa:
3056 growth = eh_frame_relax_frag (fragP);
3057 break;
3058
220e750f
RH
3059 case rs_dwarf2dbg:
3060 growth = dwarf2dbg_relax_frag (fragP);
3061 break;
3062
252b5132
RH
3063 default:
3064 BAD_CASE (fragP->fr_type);
3065 break;
3066 }
3067 if (growth)
3068 {
3069 stretch += growth;
e46d99eb 3070 stretched = 1;
d1c5f158
AM
3071 if (fragP->fr_type == rs_leb128)
3072 rs_leb128_fudge += 16;
3073 else if (fragP->fr_type == rs_align
3074 && (rs_leb128_fudge & 16) != 0
3075 && stretch == 0)
3076 rs_leb128_fudge += 16;
3077 else
3078 rs_leb128_fudge = 0;
252b5132 3079 }
4111faa5 3080 }
d1c5f158
AM
3081
3082 if (stretch == 0
3083 && (rs_leb128_fudge & 16) == 0
3084 && (rs_leb128_fudge & -16) != 0)
3085 rs_leb128_fudge += 1;
3086 else
3087 rs_leb128_fudge = 0;
252b5132 3088 }
4111faa5
NC
3089 /* Until nothing further to relax. */
3090 while (stretched && -- max_iterations);
3091
3092 if (stretched)
3093 as_fatal (_("Infinite loop encountered whilst attempting to compute the addresses of symbols in section %s"),
3094 segment_name (segment));
3095 }
252b5132 3096
e46d99eb
AM
3097 for (fragP = segment_frag_root; fragP; fragP = fragP->fr_next)
3098 if (fragP->last_fr_address != fragP->fr_address)
3099 {
3100 fragP->last_fr_address = fragP->fr_address;
3101 ret = 1;
3102 }
3103 return ret;
efaf0ba4 3104}
252b5132 3105
252b5132 3106void
d7342424 3107number_to_chars_bigendian (char *buf, valueT val, int n)
252b5132 3108{
937149dd 3109 if (n <= 0)
252b5132
RH
3110 abort ();
3111 while (n--)
3112 {
3113 buf[n] = val & 0xff;
3114 val >>= 8;
3115 }
3116}
3117
3118void
d7342424 3119number_to_chars_littleendian (char *buf, valueT val, int n)
252b5132 3120{
937149dd 3121 if (n <= 0)
252b5132
RH
3122 abort ();
3123 while (n--)
3124 {
3125 *buf++ = val & 0xff;
3126 val >>= 8;
3127 }
3128}
3129
3130void
d7342424 3131write_print_statistics (FILE *file)
252b5132 3132{
6d4d30bb 3133 fprintf (file, "fixups: %d\n", n_fixups);
252b5132
RH
3134}
3135
efaf0ba4 3136/* For debugging. */
252b5132
RH
3137extern int indent_level;
3138
3139void
d7342424 3140print_fixup (fixS *fixp)
252b5132
RH
3141{
3142 indent_level = 1;
d2df793a
NC
3143 fprintf (stderr, "fix ");
3144 fprintf_vma (stderr, (bfd_vma)((bfd_hostptr_t) fixp));
3145 fprintf (stderr, " %s:%d",fixp->fx_file, fixp->fx_line);
252b5132
RH
3146 if (fixp->fx_pcrel)
3147 fprintf (stderr, " pcrel");
3148 if (fixp->fx_pcrel_adjust)
3149 fprintf (stderr, " pcrel_adjust=%d", fixp->fx_pcrel_adjust);
3150 if (fixp->fx_im_disp)
3151 {
3152#ifdef TC_NS32K
3153 fprintf (stderr, " im_disp=%d", fixp->fx_im_disp);
3154#else
3155 fprintf (stderr, " im_disp");
3156#endif
3157 }
3158 if (fixp->fx_tcbit)
3159 fprintf (stderr, " tcbit");
3160 if (fixp->fx_done)
3161 fprintf (stderr, " done");
d2df793a
NC
3162 fprintf (stderr, "\n size=%d frag=", fixp->fx_size);
3163 fprintf_vma (stderr, (bfd_vma) ((bfd_hostptr_t) fixp->fx_frag));
3164 fprintf (stderr, " where=%ld offset=%lx addnumber=%lx",
3165 (long) fixp->fx_where,
0af1713e
AM
3166 (unsigned long) fixp->fx_offset,
3167 (unsigned long) fixp->fx_addnumber);
252b5132
RH
3168 fprintf (stderr, "\n %s (%d)", bfd_get_reloc_code_name (fixp->fx_r_type),
3169 fixp->fx_r_type);
252b5132
RH
3170 if (fixp->fx_addsy)
3171 {
3172 fprintf (stderr, "\n +<");
3173 print_symbol_value_1 (stderr, fixp->fx_addsy);
3174 fprintf (stderr, ">");
3175 }
3176 if (fixp->fx_subsy)
3177 {
3178 fprintf (stderr, "\n -<");
3179 print_symbol_value_1 (stderr, fixp->fx_subsy);
3180 fprintf (stderr, ">");
3181 }
3182 fprintf (stderr, "\n");
3183#ifdef TC_FIX_DATA_PRINT
3184 TC_FIX_DATA_PRINT (stderr, fixp);
3185#endif
3186}
This page took 1.049848 seconds and 4 git commands to generate.