No empty .Rs/.Re
[netbsd-mini2440.git] / external / gpl3 / binutils / dist / gas / write.c
blobc4a2bb22f610e1234aa5df870f0663f454fc1947
1 /* write.c - emit .o file
2 Copyright 1986, 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 Free Software Foundation, Inc.
6 This file is part of GAS, the GNU Assembler.
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to the Free
20 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
21 02110-1301, USA. */
23 /* This thing should be set up to do byteordering correctly. But... */
25 #include "as.h"
26 #include "subsegs.h"
27 #include "obstack.h"
28 #include "output-file.h"
29 #include "dwarf2dbg.h"
30 #include "libbfd.h"
32 #ifndef TC_ADJUST_RELOC_COUNT
33 #define TC_ADJUST_RELOC_COUNT(FIX, COUNT)
34 #endif
36 #ifndef TC_FORCE_RELOCATION
37 #define TC_FORCE_RELOCATION(FIX) \
38 (generic_force_reloc (FIX))
39 #endif
41 #ifndef TC_FORCE_RELOCATION_ABS
42 #define TC_FORCE_RELOCATION_ABS(FIX) \
43 (TC_FORCE_RELOCATION (FIX))
44 #endif
46 #ifndef TC_FORCE_RELOCATION_LOCAL
47 #define TC_FORCE_RELOCATION_LOCAL(FIX) \
48 (!(FIX)->fx_pcrel \
49 || TC_FORCE_RELOCATION (FIX))
50 #endif
52 #ifndef TC_FORCE_RELOCATION_SUB_SAME
53 #define TC_FORCE_RELOCATION_SUB_SAME(FIX, SEG) \
54 (! SEG_NORMAL (SEG))
55 #endif
57 #ifndef md_register_arithmetic
58 # define md_register_arithmetic 1
59 #endif
61 #ifndef TC_FORCE_RELOCATION_SUB_ABS
62 #define TC_FORCE_RELOCATION_SUB_ABS(FIX, SEG) \
63 (!md_register_arithmetic && (SEG) == reg_section)
64 #endif
66 #ifndef TC_FORCE_RELOCATION_SUB_LOCAL
67 #ifdef DIFF_EXPR_OK
68 #define TC_FORCE_RELOCATION_SUB_LOCAL(FIX, SEG) \
69 (!md_register_arithmetic && (SEG) == reg_section)
70 #else
71 #define TC_FORCE_RELOCATION_SUB_LOCAL(FIX, SEG) 1
72 #endif
73 #endif
75 #ifndef TC_VALIDATE_FIX_SUB
76 #ifdef UNDEFINED_DIFFERENCE_OK
77 /* The PA needs this for PIC code generation. */
78 #define TC_VALIDATE_FIX_SUB(FIX, SEG) \
79 (md_register_arithmetic || (SEG) != reg_section)
80 #else
81 #define TC_VALIDATE_FIX_SUB(FIX, SEG) \
82 ((md_register_arithmetic || (SEG) != reg_section) \
83 && ((FIX)->fx_r_type == BFD_RELOC_GPREL32 \
84 || (FIX)->fx_r_type == BFD_RELOC_GPREL16))
85 #endif
86 #endif
88 #ifndef TC_LINKRELAX_FIXUP
89 #define TC_LINKRELAX_FIXUP(SEG) 1
90 #endif
92 #ifndef MD_APPLY_SYM_VALUE
93 #define MD_APPLY_SYM_VALUE(FIX) 1
94 #endif
96 #ifndef TC_FINALIZE_SYMS_BEFORE_SIZE_SEG
97 #define TC_FINALIZE_SYMS_BEFORE_SIZE_SEG 1
98 #endif
100 #ifndef MD_PCREL_FROM_SECTION
101 #define MD_PCREL_FROM_SECTION(FIX, SEC) md_pcrel_from (FIX)
102 #endif
104 #ifndef TC_FAKE_LABEL
105 #define TC_FAKE_LABEL(NAME) (strcmp ((NAME), FAKE_LABEL_NAME) == 0)
106 #endif
108 /* Positive values of TC_FX_SIZE_SLACK allow a target to define
109 fixups that far past the end of a frag. Having such fixups
110 is of course most most likely a bug in setting fx_size correctly.
111 A negative value disables the fixup check entirely, which is
112 appropriate for something like the Renesas / SuperH SH_COUNT
113 reloc. */
114 #ifndef TC_FX_SIZE_SLACK
115 #define TC_FX_SIZE_SLACK(FIX) 0
116 #endif
118 /* Used to control final evaluation of expressions. */
119 int finalize_syms = 0;
121 int symbol_table_frozen;
123 symbolS *abs_section_sym;
125 /* Remember the value of dot when parsing expressions. */
126 addressT dot_value;
128 /* Relocs generated by ".reloc" pseudo. */
129 struct reloc_list* reloc_list;
131 void print_fixup (fixS *);
133 /* We generally attach relocs to frag chains. However, after we have
134 chained these all together into a segment, any relocs we add after
135 that must be attached to a segment. This will include relocs added
136 in md_estimate_size_for_relax, for example. */
137 static int frags_chained = 0;
139 static int n_fixups;
141 #define RELOC_ENUM enum bfd_reloc_code_real
143 /* Create a fixS in obstack 'notes'. */
145 static fixS *
146 fix_new_internal (fragS *frag, /* Which frag? */
147 int where, /* Where in that frag? */
148 int size, /* 1, 2, or 4 usually. */
149 symbolS *add_symbol, /* X_add_symbol. */
150 symbolS *sub_symbol, /* X_op_symbol. */
151 offsetT offset, /* X_add_number. */
152 int pcrel, /* TRUE if PC-relative relocation. */
153 RELOC_ENUM r_type ATTRIBUTE_UNUSED /* Relocation type. */)
155 fixS *fixP;
157 n_fixups++;
159 fixP = obstack_alloc (&notes, sizeof (fixS));
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)
167 as_bad (_("field fx_size too small to hold %d"), size);
168 abort ();
170 fixP->fx_addsy = add_symbol;
171 fixP->fx_subsy = sub_symbol;
172 fixP->fx_offset = offset;
173 fixP->fx_dot_value = dot_value;
174 fixP->fx_pcrel = pcrel;
175 fixP->fx_r_type = r_type;
176 fixP->fx_im_disp = 0;
177 fixP->fx_pcrel_adjust = 0;
178 fixP->fx_bit_fixP = 0;
179 fixP->fx_addnumber = 0;
180 fixP->fx_tcbit = 0;
181 fixP->fx_tcbit2 = 0;
182 fixP->fx_done = 0;
183 fixP->fx_no_overflow = 0;
184 fixP->fx_signed = 0;
186 #ifdef USING_CGEN
187 fixP->fx_cgen.insn = NULL;
188 fixP->fx_cgen.opinfo = 0;
189 #endif
191 #ifdef TC_FIX_TYPE
192 TC_INIT_FIX_DATA (fixP);
193 #endif
195 as_where (&fixP->fx_file, &fixP->fx_line);
197 /* Usually, we want relocs sorted numerically, but while
198 comparing to older versions of gas that have relocs
199 reverse sorted, it is convenient to have this compile
200 time option. xoxorich. */
203 fixS **seg_fix_rootP = (frags_chained
204 ? &seg_info (now_seg)->fix_root
205 : &frchain_now->fix_root);
206 fixS **seg_fix_tailP = (frags_chained
207 ? &seg_info (now_seg)->fix_tail
208 : &frchain_now->fix_tail);
210 #ifdef REVERSE_SORT_RELOCS
212 fixP->fx_next = *seg_fix_rootP;
213 *seg_fix_rootP = fixP;
215 #else /* REVERSE_SORT_RELOCS */
217 fixP->fx_next = NULL;
219 if (*seg_fix_tailP)
220 (*seg_fix_tailP)->fx_next = fixP;
221 else
222 *seg_fix_rootP = fixP;
223 *seg_fix_tailP = fixP;
225 #endif /* REVERSE_SORT_RELOCS */
228 return fixP;
231 /* Create a fixup relative to a symbol (plus a constant). */
233 fixS *
234 fix_new (fragS *frag, /* Which frag? */
235 int where, /* Where in that frag? */
236 int size, /* 1, 2, or 4 usually. */
237 symbolS *add_symbol, /* X_add_symbol. */
238 offsetT offset, /* X_add_number. */
239 int pcrel, /* TRUE if PC-relative relocation. */
240 RELOC_ENUM r_type /* Relocation type. */)
242 return fix_new_internal (frag, where, size, add_symbol,
243 (symbolS *) NULL, offset, pcrel, r_type);
246 /* Create a fixup for an expression. Currently we only support fixups
247 for difference expressions. That is itself more than most object
248 file formats support anyhow. */
250 fixS *
251 fix_new_exp (fragS *frag, /* Which frag? */
252 int where, /* Where in that frag? */
253 int size, /* 1, 2, or 4 usually. */
254 expressionS *exp, /* Expression. */
255 int pcrel, /* TRUE if PC-relative relocation. */
256 RELOC_ENUM r_type /* Relocation type. */)
258 symbolS *add = NULL;
259 symbolS *sub = NULL;
260 offsetT off = 0;
262 switch (exp->X_op)
264 case O_absent:
265 break;
267 case O_register:
268 as_bad (_("register value used as expression"));
269 break;
271 case O_add:
272 /* This comes up when _GLOBAL_OFFSET_TABLE_+(.-L0) is read, if
273 the difference expression cannot immediately be reduced. */
275 symbolS *stmp = make_expr_symbol (exp);
277 exp->X_op = O_symbol;
278 exp->X_op_symbol = 0;
279 exp->X_add_symbol = stmp;
280 exp->X_add_number = 0;
282 return fix_new_exp (frag, where, size, exp, pcrel, r_type);
285 case O_symbol_rva:
286 add = exp->X_add_symbol;
287 off = exp->X_add_number;
288 r_type = BFD_RELOC_RVA;
289 break;
291 case O_uminus:
292 sub = exp->X_add_symbol;
293 off = exp->X_add_number;
294 break;
296 case O_subtract:
297 sub = exp->X_op_symbol;
298 /* Fall through. */
299 case O_symbol:
300 add = exp->X_add_symbol;
301 /* Fall through. */
302 case O_constant:
303 off = exp->X_add_number;
304 break;
306 default:
307 add = make_expr_symbol (exp);
308 break;
311 return fix_new_internal (frag, where, size, add, sub, off, pcrel, r_type);
314 /* Generic function to determine whether a fixup requires a relocation. */
316 generic_force_reloc (fixS *fix)
318 if (fix->fx_r_type == BFD_RELOC_VTABLE_INHERIT
319 || fix->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
320 return 1;
322 if (fix->fx_addsy == NULL)
323 return 0;
325 return S_FORCE_RELOC (fix->fx_addsy, fix->fx_subsy == NULL);
328 /* Append a string onto another string, bumping the pointer along. */
329 void
330 append (char **charPP, char *fromP, unsigned long length)
332 /* Don't trust memcpy() of 0 chars. */
333 if (length == 0)
334 return;
336 memcpy (*charPP, fromP, length);
337 *charPP += length;
340 /* This routine records the largest alignment seen for each segment.
341 If the beginning of the segment is aligned on the worst-case
342 boundary, all of the other alignments within it will work. At
343 least one object format really uses this info. */
345 void
346 record_alignment (/* Segment to which alignment pertains. */
347 segT seg,
348 /* Alignment, as a power of 2 (e.g., 1 => 2-byte
349 boundary, 2 => 4-byte boundary, etc.) */
350 int align)
352 if (seg == absolute_section)
353 return;
355 if ((unsigned int) align > bfd_get_section_alignment (stdoutput, seg))
356 bfd_set_section_alignment (stdoutput, seg, align);
360 get_recorded_alignment (segT seg)
362 if (seg == absolute_section)
363 return 0;
365 return bfd_get_section_alignment (stdoutput, seg);
368 /* Reset the section indices after removing the gas created sections. */
370 static void
371 renumber_sections (bfd *abfd ATTRIBUTE_UNUSED, asection *sec, void *countparg)
373 int *countp = (int *) countparg;
375 sec->index = *countp;
376 ++*countp;
379 static fragS *
380 chain_frchains_together_1 (segT section, struct frchain *frchp)
382 fragS dummy, *prev_frag = &dummy;
383 fixS fix_dummy, *prev_fix = &fix_dummy;
385 for (; frchp; frchp = frchp->frch_next)
387 prev_frag->fr_next = frchp->frch_root;
388 prev_frag = frchp->frch_last;
389 assert (prev_frag->fr_type != 0);
390 if (frchp->fix_root != (fixS *) NULL)
392 if (seg_info (section)->fix_root == (fixS *) NULL)
393 seg_info (section)->fix_root = frchp->fix_root;
394 prev_fix->fx_next = frchp->fix_root;
395 seg_info (section)->fix_tail = frchp->fix_tail;
396 prev_fix = frchp->fix_tail;
399 assert (prev_frag->fr_type != 0);
400 assert (prev_frag != &dummy);
401 prev_frag->fr_next = 0;
402 return prev_frag;
405 static void
406 chain_frchains_together (bfd *abfd ATTRIBUTE_UNUSED,
407 segT section,
408 void *xxx ATTRIBUTE_UNUSED)
410 segment_info_type *info;
412 /* BFD may have introduced its own sections without using
413 subseg_new, so it is possible that seg_info is NULL. */
414 info = seg_info (section);
415 if (info != (segment_info_type *) NULL)
416 info->frchainP->frch_last
417 = chain_frchains_together_1 (section, info->frchainP);
419 /* Now that we've chained the frags together, we must add new fixups
420 to the segment, not to the frag chain. */
421 frags_chained = 1;
424 static void
425 cvt_frag_to_fill (segT sec ATTRIBUTE_UNUSED, fragS *fragP)
427 switch (fragP->fr_type)
429 case rs_align:
430 case rs_align_code:
431 case rs_align_test:
432 case rs_org:
433 case rs_space:
434 #ifdef HANDLE_ALIGN
435 HANDLE_ALIGN (fragP);
436 #endif
437 know (fragP->fr_next != NULL);
438 fragP->fr_offset = (fragP->fr_next->fr_address
439 - fragP->fr_address
440 - fragP->fr_fix) / fragP->fr_var;
441 if (fragP->fr_offset < 0)
443 as_bad_where (fragP->fr_file, fragP->fr_line,
444 _("attempt to .org/.space backwards? (%ld)"),
445 (long) fragP->fr_offset);
446 fragP->fr_offset = 0;
448 fragP->fr_type = rs_fill;
449 break;
451 case rs_fill:
452 break;
454 case rs_leb128:
456 valueT value = S_GET_VALUE (fragP->fr_symbol);
457 int size;
459 size = output_leb128 (fragP->fr_literal + fragP->fr_fix, value,
460 fragP->fr_subtype);
462 fragP->fr_fix += size;
463 fragP->fr_type = rs_fill;
464 fragP->fr_var = 0;
465 fragP->fr_offset = 0;
466 fragP->fr_symbol = NULL;
468 break;
470 case rs_cfa:
471 eh_frame_convert_frag (fragP);
472 break;
474 case rs_dwarf2dbg:
475 dwarf2dbg_convert_frag (fragP);
476 break;
478 case rs_machine_dependent:
479 md_convert_frag (stdoutput, sec, fragP);
481 assert (fragP->fr_next == NULL
482 || ((offsetT) (fragP->fr_next->fr_address - fragP->fr_address)
483 == fragP->fr_fix));
485 /* After md_convert_frag, we make the frag into a ".space 0".
486 md_convert_frag() should set up any fixSs and constants
487 required. */
488 frag_wane (fragP);
489 break;
491 #ifndef WORKING_DOT_WORD
492 case rs_broken_word:
494 struct broken_word *lie;
496 if (fragP->fr_subtype)
498 fragP->fr_fix += md_short_jump_size;
499 for (lie = (struct broken_word *) (fragP->fr_symbol);
500 lie && lie->dispfrag == fragP;
501 lie = lie->next_broken_word)
502 if (lie->added == 1)
503 fragP->fr_fix += md_long_jump_size;
505 frag_wane (fragP);
507 break;
508 #endif
510 default:
511 BAD_CASE (fragP->fr_type);
512 break;
514 #ifdef md_frag_check
515 md_frag_check (fragP);
516 #endif
519 struct relax_seg_info
521 int pass;
522 int changed;
525 static void
526 relax_seg (bfd *abfd ATTRIBUTE_UNUSED, asection *sec, void *xxx)
528 segment_info_type *seginfo = seg_info (sec);
529 struct relax_seg_info *info = (struct relax_seg_info *) xxx;
531 if (seginfo && seginfo->frchainP
532 && relax_segment (seginfo->frchainP->frch_root, sec, info->pass))
533 info->changed = 1;
536 static void
537 size_seg (bfd *abfd, asection *sec, void *xxx ATTRIBUTE_UNUSED)
539 flagword flags;
540 fragS *fragp;
541 segment_info_type *seginfo;
542 int x;
543 valueT size, newsize;
545 subseg_change (sec, 0);
547 seginfo = seg_info (sec);
548 if (seginfo && seginfo->frchainP)
550 for (fragp = seginfo->frchainP->frch_root; fragp; fragp = fragp->fr_next)
551 cvt_frag_to_fill (sec, fragp);
552 for (fragp = seginfo->frchainP->frch_root;
553 fragp->fr_next;
554 fragp = fragp->fr_next)
555 /* Walk to last elt. */
557 size = fragp->fr_address + fragp->fr_fix;
559 else
560 size = 0;
562 flags = bfd_get_section_flags (abfd, sec);
564 if (size > 0 && ! seginfo->bss)
565 flags |= SEC_HAS_CONTENTS;
567 flags &= ~SEC_RELOC;
568 x = bfd_set_section_flags (abfd, sec, flags);
569 assert (x);
571 newsize = md_section_align (sec, size);
572 x = bfd_set_section_size (abfd, sec, newsize);
573 assert (x);
575 /* If the size had to be rounded up, add some padding in the last
576 non-empty frag. */
577 assert (newsize >= size);
578 if (size != newsize)
580 fragS *last = seginfo->frchainP->frch_last;
581 fragp = seginfo->frchainP->frch_root;
582 while (fragp->fr_next != last)
583 fragp = fragp->fr_next;
584 last->fr_address = size;
585 if ((newsize - size) % fragp->fr_var == 0)
586 fragp->fr_offset += (newsize - size) / fragp->fr_var;
587 else
588 /* If we hit this abort, it's likely due to subsegs_finish not
589 providing sufficient alignment on the last frag, and the
590 machine dependent code using alignment frags with fr_var
591 greater than 1. */
592 abort ();
595 #ifdef tc_frob_section
596 tc_frob_section (sec);
597 #endif
598 #ifdef obj_frob_section
599 obj_frob_section (sec);
600 #endif
603 #ifdef DEBUG2
604 static void
605 dump_section_relocs (bfd *abfd ATTRIBUTE_UNUSED, asection *sec, FILE *stream)
607 segment_info_type *seginfo = seg_info (sec);
608 fixS *fixp = seginfo->fix_root;
610 if (!fixp)
611 return;
613 fprintf (stream, "sec %s relocs:\n", sec->name);
614 while (fixp)
616 symbolS *s = fixp->fx_addsy;
618 fprintf (stream, " %08lx: type %d ", (unsigned long) fixp,
619 (int) fixp->fx_r_type);
620 if (s == NULL)
621 fprintf (stream, "no sym\n");
622 else
624 print_symbol_value_1 (stream, s);
625 fprintf (stream, "\n");
627 fixp = fixp->fx_next;
630 #else
631 #define dump_section_relocs(ABFD,SEC,STREAM) ((void) 0)
632 #endif
634 #ifndef EMIT_SECTION_SYMBOLS
635 #define EMIT_SECTION_SYMBOLS 1
636 #endif
638 /* Resolve U.A.OFFSET_SYM and U.A.SYM fields of RELOC_LIST entries,
639 and check for validity. Convert RELOC_LIST from using U.A fields
640 to U.B fields. */
641 static void
642 resolve_reloc_expr_symbols (void)
644 struct reloc_list *r;
646 for (r = reloc_list; r; r = r->next)
648 expressionS *symval;
649 symbolS *sym;
650 bfd_vma offset, addend;
651 asection *sec;
652 reloc_howto_type *howto;
654 resolve_symbol_value (r->u.a.offset_sym);
655 symval = symbol_get_value_expression (r->u.a.offset_sym);
657 offset = 0;
658 sym = NULL;
659 if (symval->X_op == O_constant)
660 sym = r->u.a.offset_sym;
661 else if (symval->X_op == O_symbol)
663 sym = symval->X_add_symbol;
664 offset = symval->X_add_number;
665 symval = symbol_get_value_expression (symval->X_add_symbol);
667 if (sym == NULL
668 || symval->X_op != O_constant
669 || (sec = S_GET_SEGMENT (sym)) == NULL
670 || !SEG_NORMAL (sec))
672 as_bad_where (r->file, r->line, _("invalid offset expression"));
673 sec = NULL;
675 else
676 offset += S_GET_VALUE (sym);
678 sym = NULL;
679 addend = r->u.a.addend;
680 if (r->u.a.sym != NULL)
682 resolve_symbol_value (r->u.a.sym);
683 symval = symbol_get_value_expression (r->u.a.sym);
684 if (symval->X_op == O_constant)
685 sym = r->u.a.sym;
686 else if (symval->X_op == O_symbol)
688 sym = symval->X_add_symbol;
689 addend += symval->X_add_number;
690 symval = symbol_get_value_expression (symval->X_add_symbol);
692 if (symval->X_op != O_constant)
694 as_bad_where (r->file, r->line, _("invalid reloc expression"));
695 sec = NULL;
697 else if (sym != NULL)
698 symbol_mark_used_in_reloc (sym);
700 if (sym == NULL)
702 if (abs_section_sym == NULL)
703 abs_section_sym = section_symbol (absolute_section);
704 sym = abs_section_sym;
707 howto = r->u.a.howto;
709 r->u.b.sec = sec;
710 r->u.b.s = symbol_get_bfdsym (sym);
711 r->u.b.r.sym_ptr_ptr = &r->u.b.s;
712 r->u.b.r.address = offset;
713 r->u.b.r.addend = addend;
714 r->u.b.r.howto = howto;
718 /* This pass over fixups decides whether symbols can be replaced with
719 section symbols. */
721 static void
722 adjust_reloc_syms (bfd *abfd ATTRIBUTE_UNUSED,
723 asection *sec,
724 void *xxx ATTRIBUTE_UNUSED)
726 segment_info_type *seginfo = seg_info (sec);
727 fixS *fixp;
729 if (seginfo == NULL)
730 return;
732 dump_section_relocs (abfd, sec, stderr);
734 for (fixp = seginfo->fix_root; fixp; fixp = fixp->fx_next)
735 if (fixp->fx_done)
736 /* Ignore it. */
738 else if (fixp->fx_addsy)
740 symbolS *sym;
741 asection *symsec;
743 #ifdef DEBUG5
744 fprintf (stderr, "\n\nadjusting fixup:\n");
745 print_fixup (fixp);
746 #endif
748 sym = fixp->fx_addsy;
750 /* All symbols should have already been resolved at this
751 point. It is possible to see unresolved expression
752 symbols, though, since they are not in the regular symbol
753 table. */
754 resolve_symbol_value (sym);
756 if (fixp->fx_subsy != NULL)
757 resolve_symbol_value (fixp->fx_subsy);
759 /* If this symbol is equated to an undefined or common symbol,
760 convert the fixup to being against that symbol. */
761 while (symbol_equated_reloc_p (sym)
762 || S_IS_WEAKREFR (sym))
764 symbolS *newsym = symbol_get_value_expression (sym)->X_add_symbol;
765 if (sym == newsym)
766 break;
767 fixp->fx_offset += symbol_get_value_expression (sym)->X_add_number;
768 fixp->fx_addsy = newsym;
769 sym = newsym;
772 if (symbol_mri_common_p (sym))
774 fixp->fx_offset += S_GET_VALUE (sym);
775 fixp->fx_addsy = symbol_get_value_expression (sym)->X_add_symbol;
776 continue;
779 /* If the symbol is undefined, common, weak, or global (ELF
780 shared libs), we can't replace it with the section symbol. */
781 if (S_FORCE_RELOC (fixp->fx_addsy, 1))
782 continue;
784 /* Is there some other (target cpu dependent) reason we can't adjust
785 this one? (E.g. relocations involving function addresses on
786 the PA. */
787 #ifdef tc_fix_adjustable
788 if (! tc_fix_adjustable (fixp))
789 continue;
790 #endif
792 /* Since we're reducing to section symbols, don't attempt to reduce
793 anything that's already using one. */
794 if (symbol_section_p (sym))
795 continue;
797 symsec = S_GET_SEGMENT (sym);
798 if (symsec == NULL)
799 abort ();
801 if (bfd_is_abs_section (symsec))
803 /* The fixup_segment routine normally will not use this
804 symbol in a relocation. */
805 continue;
808 /* Don't try to reduce relocs which refer to non-local symbols
809 in .linkonce sections. It can lead to confusion when a
810 debugging section refers to a .linkonce section. I hope
811 this will always be correct. */
812 if (symsec != sec && ! S_IS_LOCAL (sym))
814 if ((symsec->flags & SEC_LINK_ONCE) != 0
815 || (IS_ELF
816 /* The GNU toolchain uses an extension for ELF: a
817 section beginning with the magic string
818 .gnu.linkonce is a linkonce section. */
819 && strncmp (segment_name (symsec), ".gnu.linkonce",
820 sizeof ".gnu.linkonce" - 1) == 0))
821 continue;
824 /* Never adjust a reloc against local symbol in a merge section with
825 a non-negative addend or if the addend would place the relocation
826 outside the section's limits. */
827 if ((symsec->flags & SEC_MERGE) != 0
828 && (S_GET_VALUE(sym) + fixp->fx_offset < S_GET_VALUE(sym)
829 || S_GET_VALUE(sym) + fixp->fx_offset >= bfd_get_section_size(symsec)
830 || fixp->fx_subsy != NULL))
831 continue;
833 /* Never adjust a reloc against TLS local symbol. */
834 if ((symsec->flags & SEC_THREAD_LOCAL) != 0)
835 continue;
837 /* We refetch the segment when calling section_symbol, rather
838 than using symsec, because S_GET_VALUE may wind up changing
839 the section when it calls resolve_symbol_value. */
840 fixp->fx_offset += S_GET_VALUE (sym);
841 fixp->fx_addsy = section_symbol (S_GET_SEGMENT (sym));
842 #ifdef DEBUG5
843 fprintf (stderr, "\nadjusted fixup:\n");
844 print_fixup (fixp);
845 #endif
848 dump_section_relocs (abfd, sec, stderr);
851 /* fixup_segment()
853 Go through all the fixS's in a segment and see which ones can be
854 handled now. (These consist of fixS where we have since discovered
855 the value of a symbol, or the address of the frag involved.)
856 For each one, call md_apply_fix to put the fix into the frag data.
858 Result is a count of how many relocation structs will be needed to
859 handle the remaining fixS's that we couldn't completely handle here.
860 These will be output later by emit_relocations(). */
862 static long
863 fixup_segment (fixS *fixP, segT this_segment)
865 long seg_reloc_count = 0;
866 valueT add_number;
867 fragS *fragP;
868 segT add_symbol_segment = absolute_section;
870 if (fixP != NULL && abs_section_sym == NULL)
871 abs_section_sym = section_symbol (absolute_section);
873 /* If the linker is doing the relaxing, we must not do any fixups.
875 Well, strictly speaking that's not true -- we could do any that
876 are PC-relative and don't cross regions that could change size.
877 And for the i960 we might be able to turn callx/callj into bal
878 anyways in cases where we know the maximum displacement. */
879 if (linkrelax && TC_LINKRELAX_FIXUP (this_segment))
881 for (; fixP; fixP = fixP->fx_next)
882 if (!fixP->fx_done)
884 if (fixP->fx_addsy == NULL)
886 /* There was no symbol required by this relocation.
887 However, BFD doesn't really handle relocations
888 without symbols well. So fake up a local symbol in
889 the absolute section. */
890 fixP->fx_addsy = abs_section_sym;
892 symbol_mark_used_in_reloc (fixP->fx_addsy);
893 if (fixP->fx_subsy != NULL)
894 symbol_mark_used_in_reloc (fixP->fx_subsy);
895 seg_reloc_count++;
897 TC_ADJUST_RELOC_COUNT (fixP, seg_reloc_count);
898 return seg_reloc_count;
901 for (; fixP; fixP = fixP->fx_next)
903 #ifdef DEBUG5
904 fprintf (stderr, "\nprocessing fixup:\n");
905 print_fixup (fixP);
906 #endif
908 fragP = fixP->fx_frag;
909 know (fragP);
910 #ifdef TC_VALIDATE_FIX
911 TC_VALIDATE_FIX (fixP, this_segment, skip);
912 #endif
913 add_number = fixP->fx_offset;
915 if (fixP->fx_addsy != NULL)
916 add_symbol_segment = S_GET_SEGMENT (fixP->fx_addsy);
918 if (fixP->fx_subsy != NULL)
920 segT sub_symbol_segment;
921 resolve_symbol_value (fixP->fx_subsy);
922 sub_symbol_segment = S_GET_SEGMENT (fixP->fx_subsy);
923 if (fixP->fx_addsy != NULL
924 && sub_symbol_segment == add_symbol_segment
925 && !TC_FORCE_RELOCATION_SUB_SAME (fixP, add_symbol_segment))
927 add_number += S_GET_VALUE (fixP->fx_addsy);
928 add_number -= S_GET_VALUE (fixP->fx_subsy);
929 fixP->fx_offset = add_number;
930 fixP->fx_addsy = NULL;
931 fixP->fx_subsy = NULL;
932 #ifdef TC_M68K
933 /* See the comment below about 68k weirdness. */
934 fixP->fx_pcrel = 0;
935 #endif
937 else if (sub_symbol_segment == absolute_section
938 && !TC_FORCE_RELOCATION_SUB_ABS (fixP, add_symbol_segment))
940 add_number -= S_GET_VALUE (fixP->fx_subsy);
941 fixP->fx_offset = add_number;
942 fixP->fx_subsy = NULL;
944 else if (sub_symbol_segment == this_segment
945 && !TC_FORCE_RELOCATION_SUB_LOCAL (fixP, add_symbol_segment))
947 add_number -= S_GET_VALUE (fixP->fx_subsy);
948 fixP->fx_offset = (add_number + fixP->fx_dot_value
949 + fixP->fx_frag->fr_address);
951 /* Make it pc-relative. If the back-end code has not
952 selected a pc-relative reloc, cancel the adjustment
953 we do later on all pc-relative relocs. */
954 if (0
955 #ifdef TC_M68K
956 /* Do this for m68k even if it's already described
957 as pc-relative. On the m68k, an operand of
958 "pc@(foo-.-2)" should address "foo" in a
959 pc-relative mode. */
960 || 1
961 #endif
962 || !fixP->fx_pcrel)
963 add_number += MD_PCREL_FROM_SECTION (fixP, this_segment);
964 fixP->fx_subsy = NULL;
965 fixP->fx_pcrel = 1;
967 else if (!TC_VALIDATE_FIX_SUB (fixP, add_symbol_segment))
969 if (!md_register_arithmetic
970 && (add_symbol_segment == reg_section
971 || sub_symbol_segment == reg_section))
972 as_bad_where (fixP->fx_file, fixP->fx_line,
973 _("register value used as expression"));
974 else
975 as_bad_where (fixP->fx_file, fixP->fx_line,
976 _("can't resolve `%s' {%s section} - `%s' {%s section}"),
977 fixP->fx_addsy ? S_GET_NAME (fixP->fx_addsy) : "0",
978 segment_name (add_symbol_segment),
979 S_GET_NAME (fixP->fx_subsy),
980 segment_name (sub_symbol_segment));
984 if (fixP->fx_addsy)
986 if (add_symbol_segment == this_segment
987 && !TC_FORCE_RELOCATION_LOCAL (fixP))
989 /* This fixup was made when the symbol's segment was
990 SEG_UNKNOWN, but it is now in the local segment.
991 So we know how to do the address without relocation. */
992 add_number += S_GET_VALUE (fixP->fx_addsy);
993 fixP->fx_offset = add_number;
994 if (fixP->fx_pcrel)
995 add_number -= MD_PCREL_FROM_SECTION (fixP, this_segment);
996 fixP->fx_addsy = NULL;
997 fixP->fx_pcrel = 0;
999 else if (add_symbol_segment == absolute_section
1000 && !TC_FORCE_RELOCATION_ABS (fixP))
1002 add_number += S_GET_VALUE (fixP->fx_addsy);
1003 fixP->fx_offset = add_number;
1004 fixP->fx_addsy = NULL;
1006 else if (add_symbol_segment != undefined_section
1007 && ! bfd_is_com_section (add_symbol_segment)
1008 && MD_APPLY_SYM_VALUE (fixP))
1009 add_number += S_GET_VALUE (fixP->fx_addsy);
1012 if (fixP->fx_pcrel)
1014 add_number -= MD_PCREL_FROM_SECTION (fixP, this_segment);
1015 if (!fixP->fx_done && fixP->fx_addsy == NULL)
1017 /* There was no symbol required by this relocation.
1018 However, BFD doesn't really handle relocations
1019 without symbols well. So fake up a local symbol in
1020 the absolute section. */
1021 fixP->fx_addsy = abs_section_sym;
1025 if (!fixP->fx_done)
1026 md_apply_fix (fixP, &add_number, this_segment);
1028 if (!fixP->fx_done)
1030 ++seg_reloc_count;
1031 if (fixP->fx_addsy == NULL)
1032 fixP->fx_addsy = abs_section_sym;
1033 symbol_mark_used_in_reloc (fixP->fx_addsy);
1034 if (fixP->fx_subsy != NULL)
1035 symbol_mark_used_in_reloc (fixP->fx_subsy);
1038 if (!fixP->fx_bit_fixP && !fixP->fx_no_overflow && fixP->fx_size != 0)
1040 if (fixP->fx_size < sizeof (valueT))
1042 valueT mask;
1044 mask = 0;
1045 mask--; /* Set all bits to one. */
1046 mask <<= fixP->fx_size * 8 - (fixP->fx_signed ? 1 : 0);
1047 if ((add_number & mask) != 0 && (add_number & mask) != mask)
1049 char buf[50], buf2[50];
1050 sprint_value (buf, fragP->fr_address + fixP->fx_where);
1051 if (add_number > 1000)
1052 sprint_value (buf2, add_number);
1053 else
1054 sprintf (buf2, "%ld", (long) add_number);
1055 as_bad_where (fixP->fx_file, fixP->fx_line,
1056 _("value of %s too large for field of %d bytes at %s"),
1057 buf2, fixP->fx_size, buf);
1058 } /* Generic error checking. */
1060 #ifdef WARN_SIGNED_OVERFLOW_WORD
1061 /* Warn if a .word value is too large when treated as a signed
1062 number. We already know it is not too negative. This is to
1063 catch over-large switches generated by gcc on the 68k. */
1064 if (!flag_signed_overflow_ok
1065 && fixP->fx_size == 2
1066 && add_number > 0x7fff)
1067 as_bad_where (fixP->fx_file, fixP->fx_line,
1068 _("signed .word overflow; switch may be too large; %ld at 0x%lx"),
1069 (long) add_number,
1070 (long) (fragP->fr_address + fixP->fx_where));
1071 #endif
1072 } /* Not a bit fix. */
1074 #ifdef TC_VALIDATE_FIX
1075 skip: ATTRIBUTE_UNUSED_LABEL
1077 #endif
1078 #ifdef DEBUG5
1079 fprintf (stderr, "result:\n");
1080 print_fixup (fixP);
1081 #endif
1082 } /* For each fixS in this segment. */
1084 TC_ADJUST_RELOC_COUNT (fixP, seg_reloc_count);
1085 return seg_reloc_count;
1088 static void
1089 fix_segment (bfd *abfd ATTRIBUTE_UNUSED,
1090 asection *sec,
1091 void *xxx ATTRIBUTE_UNUSED)
1093 segment_info_type *seginfo = seg_info (sec);
1095 fixup_segment (seginfo->fix_root, sec);
1098 static void
1099 install_reloc (asection *sec, arelent *reloc, fragS *fragp,
1100 char *file, unsigned int line)
1102 char *err;
1103 bfd_reloc_status_type s;
1104 asymbol *sym;
1106 if (reloc->sym_ptr_ptr != NULL
1107 && (sym = *reloc->sym_ptr_ptr) != NULL
1108 && (sym->flags & BSF_KEEP) == 0
1109 && ((sym->flags & BSF_SECTION_SYM) == 0
1110 || (EMIT_SECTION_SYMBOLS
1111 && !bfd_is_abs_section (sym->section))))
1112 as_bad_where (file, line, _("redefined symbol cannot be used on reloc"));
1114 s = bfd_install_relocation (stdoutput, reloc,
1115 fragp->fr_literal, fragp->fr_address,
1116 sec, &err);
1117 switch (s)
1119 case bfd_reloc_ok:
1120 break;
1121 case bfd_reloc_overflow:
1122 as_bad_where (file, line, _("relocation overflow"));
1123 break;
1124 case bfd_reloc_outofrange:
1125 as_bad_where (file, line, _("relocation out of range"));
1126 break;
1127 default:
1128 as_fatal (_("%s:%u: bad return from bfd_install_relocation: %x"),
1129 file, line, s);
1133 static void
1134 write_relocs (bfd *abfd, asection *sec, void *xxx ATTRIBUTE_UNUSED)
1136 segment_info_type *seginfo = seg_info (sec);
1137 unsigned int i;
1138 unsigned int n;
1139 struct reloc_list *my_reloc_list, **rp, *r;
1140 arelent **relocs;
1141 fixS *fixp;
1143 /* If seginfo is NULL, we did not create this section; don't do
1144 anything with it. */
1145 if (seginfo == NULL)
1146 return;
1148 n = 0;
1149 for (fixp = seginfo->fix_root; fixp; fixp = fixp->fx_next)
1150 if (!fixp->fx_done)
1151 n++;
1153 #ifdef RELOC_EXPANSION_POSSIBLE
1154 n *= MAX_RELOC_EXPANSION;
1155 #endif
1157 /* Extract relocs for this section from reloc_list. */
1158 rp = &reloc_list;
1159 my_reloc_list = NULL;
1160 while ((r = *rp) != NULL)
1162 if (r->u.b.sec == sec)
1164 *rp = r->next;
1165 r->next = my_reloc_list;
1166 my_reloc_list = r;
1167 n++;
1169 else
1170 rp = &r->next;
1173 relocs = xcalloc (n, sizeof (arelent *));
1175 i = 0;
1176 for (fixp = seginfo->fix_root; fixp != (fixS *) NULL; fixp = fixp->fx_next)
1178 int j;
1179 int fx_size, slack;
1180 offsetT loc;
1182 if (fixp->fx_done)
1183 continue;
1185 fx_size = fixp->fx_size;
1186 slack = TC_FX_SIZE_SLACK (fixp);
1187 if (slack > 0)
1188 fx_size = fx_size > slack ? fx_size - slack : 0;
1189 loc = fixp->fx_where + fx_size;
1190 if (slack >= 0 && loc > fixp->fx_frag->fr_fix)
1191 as_bad_where (fixp->fx_file, fixp->fx_line,
1192 _("internal error: fixup not contained within frag"));
1194 #ifndef RELOC_EXPANSION_POSSIBLE
1196 arelent *reloc = tc_gen_reloc (sec, fixp);
1198 if (!reloc)
1199 continue;
1200 relocs[i++] = reloc;
1201 j = 1;
1203 #else
1205 arelent **reloc = tc_gen_reloc (sec, fixp);
1207 for (j = 0; reloc[j]; j++)
1208 relocs[i++] = reloc[j];
1210 #endif
1212 for ( ; j != 0; --j)
1213 install_reloc (sec, relocs[i - j], fixp->fx_frag,
1214 fixp->fx_file, fixp->fx_line);
1216 n = i;
1218 #ifdef DEBUG4
1220 unsigned int i, j, nsyms;
1221 asymbol **sympp;
1222 sympp = bfd_get_outsymbols (stdoutput);
1223 nsyms = bfd_get_symcount (stdoutput);
1224 for (i = 0; i < n; i++)
1225 if (((*relocs[i]->sym_ptr_ptr)->flags & BSF_SECTION_SYM) == 0)
1227 for (j = 0; j < nsyms; j++)
1228 if (sympp[j] == *relocs[i]->sym_ptr_ptr)
1229 break;
1230 if (j == nsyms)
1231 abort ();
1234 #endif
1236 for (r = my_reloc_list; r != NULL; r = r->next)
1238 fragS *f;
1239 for (f = seginfo->frchainP->frch_root; f; f = f->fr_next)
1240 if (f->fr_address <= r->u.b.r.address
1241 && r->u.b.r.address < f->fr_address + f->fr_fix)
1242 break;
1243 if (f == NULL)
1244 as_bad_where (r->file, r->line,
1245 _("reloc not within (fixed part of) section"));
1246 else
1248 relocs[n++] = &r->u.b.r;
1249 install_reloc (sec, &r->u.b.r, f, r->file, r->line);
1253 if (n)
1255 flagword flags = bfd_get_section_flags (abfd, sec);
1256 flags |= SEC_RELOC;
1257 bfd_set_section_flags (abfd, sec, flags);
1258 bfd_set_reloc (stdoutput, sec, relocs, n);
1261 #ifdef SET_SECTION_RELOCS
1262 SET_SECTION_RELOCS (sec, relocs, n);
1263 #endif
1265 #ifdef DEBUG3
1267 unsigned int i;
1268 arelent *r;
1269 asymbol *s;
1270 fprintf (stderr, "relocs for sec %s\n", sec->name);
1271 for (i = 0; i < n; i++)
1273 r = relocs[i];
1274 s = *r->sym_ptr_ptr;
1275 fprintf (stderr, " reloc %2d @%p off %4lx : sym %-10s addend %lx\n",
1276 i, r, (unsigned long)r->address, s->name, (unsigned long)r->addend);
1279 #endif
1282 static void
1283 write_contents (bfd *abfd ATTRIBUTE_UNUSED,
1284 asection *sec,
1285 void *xxx ATTRIBUTE_UNUSED)
1287 segment_info_type *seginfo = seg_info (sec);
1288 addressT offset = 0;
1289 fragS *f;
1291 /* Write out the frags. */
1292 if (seginfo == NULL
1293 || !(bfd_get_section_flags (abfd, sec) & SEC_HAS_CONTENTS))
1294 return;
1296 for (f = seginfo->frchainP->frch_root;
1298 f = f->fr_next)
1300 int x;
1301 addressT fill_size;
1302 char *fill_literal;
1303 offsetT count;
1305 assert (f->fr_type == rs_fill);
1306 if (f->fr_fix)
1308 x = bfd_set_section_contents (stdoutput, sec,
1309 f->fr_literal, (file_ptr) offset,
1310 (bfd_size_type) f->fr_fix);
1311 if (!x)
1312 as_fatal (_("can't write %s: %s"), stdoutput->filename,
1313 bfd_errmsg (bfd_get_error ()));
1314 offset += f->fr_fix;
1316 fill_literal = f->fr_literal + f->fr_fix;
1317 fill_size = f->fr_var;
1318 count = f->fr_offset;
1319 assert (count >= 0);
1320 if (fill_size && count)
1322 char buf[256];
1323 if (fill_size > sizeof (buf))
1325 /* Do it the old way. Can this ever happen? */
1326 while (count--)
1328 x = bfd_set_section_contents (stdoutput, sec,
1329 fill_literal,
1330 (file_ptr) offset,
1331 (bfd_size_type) fill_size);
1332 if (!x)
1333 as_fatal (_("can't write %s: %s"), stdoutput->filename,
1334 bfd_errmsg (bfd_get_error ()));
1335 offset += fill_size;
1338 else
1340 /* Build a buffer full of fill objects and output it as
1341 often as necessary. This saves on the overhead of
1342 potentially lots of bfd_set_section_contents calls. */
1343 int n_per_buf, i;
1344 if (fill_size == 1)
1346 n_per_buf = sizeof (buf);
1347 memset (buf, *fill_literal, n_per_buf);
1349 else
1351 char *bufp;
1352 n_per_buf = sizeof (buf) / fill_size;
1353 for (i = n_per_buf, bufp = buf; i; i--, bufp += fill_size)
1354 memcpy (bufp, fill_literal, fill_size);
1356 for (; count > 0; count -= n_per_buf)
1358 n_per_buf = n_per_buf > count ? count : n_per_buf;
1359 x = bfd_set_section_contents
1360 (stdoutput, sec, buf, (file_ptr) offset,
1361 (bfd_size_type) n_per_buf * fill_size);
1362 if (!x)
1363 as_fatal (_("cannot write to output file"));
1364 offset += n_per_buf * fill_size;
1371 static void
1372 merge_data_into_text (void)
1374 seg_info (text_section)->frchainP->frch_last->fr_next =
1375 seg_info (data_section)->frchainP->frch_root;
1376 seg_info (text_section)->frchainP->frch_last =
1377 seg_info (data_section)->frchainP->frch_last;
1378 seg_info (data_section)->frchainP = 0;
1381 static void
1382 set_symtab (void)
1384 int nsyms;
1385 asymbol **asympp;
1386 symbolS *symp;
1387 bfd_boolean result;
1389 /* Count symbols. We can't rely on a count made by the loop in
1390 write_object_file, because *_frob_file may add a new symbol or
1391 two. */
1392 nsyms = 0;
1393 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
1394 nsyms++;
1396 if (nsyms)
1398 int i;
1399 bfd_size_type amt = (bfd_size_type) nsyms * sizeof (asymbol *);
1401 asympp = bfd_alloc (stdoutput, amt);
1402 symp = symbol_rootP;
1403 for (i = 0; i < nsyms; i++, symp = symbol_next (symp))
1405 asympp[i] = symbol_get_bfdsym (symp);
1406 if (asympp[i]->flags != BSF_SECTION_SYM
1407 || !(bfd_is_const_section (asympp[i]->section)
1408 && asympp[i]->section->symbol == asympp[i]))
1409 asympp[i]->flags |= BSF_KEEP;
1410 symbol_mark_written (symp);
1413 else
1414 asympp = 0;
1415 result = bfd_set_symtab (stdoutput, asympp, nsyms);
1416 assert (result);
1417 symbol_table_frozen = 1;
1420 /* Finish the subsegments. After every sub-segment, we fake an
1421 ".align ...". This conforms to BSD4.2 brane-damage. We then fake
1422 ".fill 0" because that is the kind of frag that requires least
1423 thought. ".align" frags like to have a following frag since that
1424 makes calculating their intended length trivial. */
1426 #ifndef SUB_SEGMENT_ALIGN
1427 #ifdef HANDLE_ALIGN
1428 /* The last subsegment gets an alignment corresponding to the alignment
1429 of the section. This allows proper nop-filling at the end of
1430 code-bearing sections. */
1431 #define SUB_SEGMENT_ALIGN(SEG, FRCHAIN) \
1432 (!(FRCHAIN)->frch_next ? get_recorded_alignment (SEG) : 0)
1433 #else
1434 #define SUB_SEGMENT_ALIGN(SEG, FRCHAIN) 0
1435 #endif
1436 #endif
1438 void
1439 subsegs_finish (void)
1441 struct frchain *frchainP;
1442 asection *s;
1444 for (s = stdoutput->sections; s; s = s->next)
1446 segment_info_type *seginfo = seg_info (s);
1447 if (!seginfo)
1448 continue;
1450 for (frchainP = seginfo->frchainP;
1451 frchainP != NULL;
1452 frchainP = frchainP->frch_next)
1454 int alignment = 0;
1456 subseg_set (s, frchainP->frch_subseg);
1458 /* This now gets called even if we had errors. In that case,
1459 any alignment is meaningless, and, moreover, will look weird
1460 if we are generating a listing. */
1461 if (!had_errors ())
1463 alignment = SUB_SEGMENT_ALIGN (now_seg, frchainP);
1464 if ((bfd_get_section_flags (now_seg->owner, now_seg) & SEC_MERGE)
1465 && now_seg->entsize)
1467 unsigned int entsize = now_seg->entsize;
1468 int entalign = 0;
1470 while ((entsize & 1) == 0)
1472 ++entalign;
1473 entsize >>= 1;
1475 if (entalign > alignment)
1476 alignment = entalign;
1480 if (subseg_text_p (now_seg))
1481 frag_align_code (alignment, 0);
1482 else
1483 frag_align (alignment, 0, 0);
1485 /* frag_align will have left a new frag.
1486 Use this last frag for an empty ".fill".
1488 For this segment ...
1489 Create a last frag. Do not leave a "being filled in frag". */
1490 frag_wane (frag_now);
1491 frag_now->fr_fix = 0;
1492 know (frag_now->fr_next == NULL);
1497 /* Write the object file. */
1499 void
1500 write_object_file (void)
1502 struct relax_seg_info rsi;
1503 #ifndef WORKING_DOT_WORD
1504 fragS *fragP; /* Track along all frags. */
1505 #endif
1507 /* Do we really want to write it? */
1509 int n_warns, n_errs;
1510 n_warns = had_warnings ();
1511 n_errs = had_errors ();
1512 /* The -Z flag indicates that an object file should be generated,
1513 regardless of warnings and errors. */
1514 if (flag_always_generate_output)
1516 if (n_warns || n_errs)
1517 as_warn (_("%d error%s, %d warning%s, generating bad object file"),
1518 n_errs, n_errs == 1 ? "" : "s",
1519 n_warns, n_warns == 1 ? "" : "s");
1521 else
1523 if (n_errs)
1524 as_fatal (_("%d error%s, %d warning%s, no object file generated"),
1525 n_errs, n_errs == 1 ? "" : "s",
1526 n_warns, n_warns == 1 ? "" : "s");
1530 #ifdef OBJ_VMS
1531 /* Under VMS we try to be compatible with VAX-11 "C". Thus, we call
1532 a routine to check for the definition of the procedure "_main",
1533 and if so -- fix it up so that it can be program entry point. */
1534 vms_check_for_main ();
1535 #endif /* OBJ_VMS */
1537 /* From now on, we don't care about sub-segments. Build one frag chain
1538 for each segment. Linked thru fr_next. */
1540 /* Remove the sections created by gas for its own purposes. */
1542 int i;
1544 bfd_section_list_remove (stdoutput, reg_section);
1545 bfd_section_list_remove (stdoutput, expr_section);
1546 stdoutput->section_count -= 2;
1547 i = 0;
1548 bfd_map_over_sections (stdoutput, renumber_sections, &i);
1551 bfd_map_over_sections (stdoutput, chain_frchains_together, (char *) 0);
1553 /* We have two segments. If user gave -R flag, then we must put the
1554 data frags into the text segment. Do this before relaxing so
1555 we know to take advantage of -R and make shorter addresses. */
1556 if (flag_readonly_data_in_text)
1558 merge_data_into_text ();
1561 rsi.pass = 0;
1562 while (1)
1564 #ifndef WORKING_DOT_WORD
1565 /* We need to reset the markers in the broken word list and
1566 associated frags between calls to relax_segment (via
1567 relax_seg). Since the broken word list is global, we do it
1568 once per round, rather than locally in relax_segment for each
1569 segment. */
1570 struct broken_word *brokp;
1572 for (brokp = broken_words;
1573 brokp != (struct broken_word *) NULL;
1574 brokp = brokp->next_broken_word)
1576 brokp->added = 0;
1578 if (brokp->dispfrag != (fragS *) NULL
1579 && brokp->dispfrag->fr_type == rs_broken_word)
1580 brokp->dispfrag->fr_subtype = 0;
1582 #endif
1584 rsi.changed = 0;
1585 bfd_map_over_sections (stdoutput, relax_seg, &rsi);
1586 rsi.pass++;
1587 if (!rsi.changed)
1588 break;
1591 /* Note - Most ports will use the default value of
1592 TC_FINALIZE_SYMS_BEFORE_SIZE_SEG, which 1. This will force
1593 local symbols to be resolved, removing their frag information.
1594 Some ports however, will not have finished relaxing all of
1595 their frags and will still need the local symbol frag
1596 information. These ports can set
1597 TC_FINALIZE_SYMS_BEFORE_SIZE_SEG to 0. */
1598 finalize_syms = TC_FINALIZE_SYMS_BEFORE_SIZE_SEG;
1600 bfd_map_over_sections (stdoutput, size_seg, (char *) 0);
1602 /* Relaxation has completed. Freeze all syms. */
1603 finalize_syms = 1;
1605 #ifdef md_post_relax_hook
1606 md_post_relax_hook;
1607 #endif
1609 #ifndef WORKING_DOT_WORD
1611 struct broken_word *lie;
1612 struct broken_word **prevP;
1614 prevP = &broken_words;
1615 for (lie = broken_words; lie; lie = lie->next_broken_word)
1616 if (!lie->added)
1618 expressionS exp;
1620 subseg_change (lie->seg, lie->subseg);
1621 exp.X_op = O_subtract;
1622 exp.X_add_symbol = lie->add;
1623 exp.X_op_symbol = lie->sub;
1624 exp.X_add_number = lie->addnum;
1625 #ifdef TC_CONS_FIX_NEW
1626 TC_CONS_FIX_NEW (lie->frag,
1627 lie->word_goes_here - lie->frag->fr_literal,
1628 2, &exp);
1629 #else
1630 fix_new_exp (lie->frag,
1631 lie->word_goes_here - lie->frag->fr_literal,
1632 2, &exp, 0, BFD_RELOC_16);
1633 #endif
1634 *prevP = lie->next_broken_word;
1636 else
1637 prevP = &(lie->next_broken_word);
1639 for (lie = broken_words; lie;)
1641 struct broken_word *untruth;
1642 char *table_ptr;
1643 addressT table_addr;
1644 addressT from_addr, to_addr;
1645 int n, m;
1647 subseg_change (lie->seg, lie->subseg);
1648 fragP = lie->dispfrag;
1650 /* Find out how many broken_words go here. */
1651 n = 0;
1652 for (untruth = lie;
1653 untruth && untruth->dispfrag == fragP;
1654 untruth = untruth->next_broken_word)
1655 if (untruth->added == 1)
1656 n++;
1658 table_ptr = lie->dispfrag->fr_opcode;
1659 table_addr = (lie->dispfrag->fr_address
1660 + (table_ptr - lie->dispfrag->fr_literal));
1661 /* Create the jump around the long jumps. This is a short
1662 jump from table_ptr+0 to table_ptr+n*long_jump_size. */
1663 from_addr = table_addr;
1664 to_addr = table_addr + md_short_jump_size + n * md_long_jump_size;
1665 md_create_short_jump (table_ptr, from_addr, to_addr, lie->dispfrag,
1666 lie->add);
1667 table_ptr += md_short_jump_size;
1668 table_addr += md_short_jump_size;
1670 for (m = 0;
1671 lie && lie->dispfrag == fragP;
1672 m++, lie = lie->next_broken_word)
1674 if (lie->added == 2)
1675 continue;
1676 /* Patch the jump table. */
1677 /* This is the offset from ??? to table_ptr+0. */
1678 to_addr = table_addr - S_GET_VALUE (lie->sub);
1679 #ifdef TC_CHECK_ADJUSTED_BROKEN_DOT_WORD
1680 TC_CHECK_ADJUSTED_BROKEN_DOT_WORD (to_addr, lie);
1681 #endif
1682 md_number_to_chars (lie->word_goes_here, to_addr, 2);
1683 for (untruth = lie->next_broken_word;
1684 untruth && untruth->dispfrag == fragP;
1685 untruth = untruth->next_broken_word)
1687 if (untruth->use_jump == lie)
1688 md_number_to_chars (untruth->word_goes_here, to_addr, 2);
1691 /* Install the long jump. */
1692 /* This is a long jump from table_ptr+0 to the final target. */
1693 from_addr = table_addr;
1694 to_addr = S_GET_VALUE (lie->add) + lie->addnum;
1695 md_create_long_jump (table_ptr, from_addr, to_addr, lie->dispfrag,
1696 lie->add);
1697 table_ptr += md_long_jump_size;
1698 table_addr += md_long_jump_size;
1702 #endif /* not WORKING_DOT_WORD */
1704 /* Resolve symbol values. This needs to be done before processing
1705 the relocations. */
1706 if (symbol_rootP)
1708 symbolS *symp;
1710 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
1711 resolve_symbol_value (symp);
1713 resolve_local_symbol_values ();
1714 resolve_reloc_expr_symbols ();
1716 PROGRESS (1);
1718 #ifdef tc_frob_file_before_adjust
1719 tc_frob_file_before_adjust ();
1720 #endif
1721 #ifdef obj_frob_file_before_adjust
1722 obj_frob_file_before_adjust ();
1723 #endif
1725 bfd_map_over_sections (stdoutput, adjust_reloc_syms, (char *) 0);
1727 #ifdef tc_frob_file_before_fix
1728 tc_frob_file_before_fix ();
1729 #endif
1730 #ifdef obj_frob_file_before_fix
1731 obj_frob_file_before_fix ();
1732 #endif
1734 bfd_map_over_sections (stdoutput, fix_segment, (char *) 0);
1736 /* Set up symbol table, and write it out. */
1737 if (symbol_rootP)
1739 symbolS *symp;
1740 bfd_boolean skip_next_symbol = FALSE;
1742 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
1744 int punt = 0;
1745 const char *name;
1747 if (skip_next_symbol)
1749 /* Don't do anything besides moving the value of the
1750 symbol from the GAS value-field to the BFD value-field. */
1751 symbol_get_bfdsym (symp)->value = S_GET_VALUE (symp);
1752 skip_next_symbol = FALSE;
1753 continue;
1756 if (symbol_mri_common_p (symp))
1758 if (S_IS_EXTERNAL (symp))
1759 as_bad (_("%s: global symbols not supported in common sections"),
1760 S_GET_NAME (symp));
1761 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
1762 continue;
1765 name = S_GET_NAME (symp);
1766 if (name)
1768 const char *name2 =
1769 decode_local_label_name ((char *) S_GET_NAME (symp));
1770 /* They only differ if `name' is a fb or dollar local
1771 label name. */
1772 if (name2 != name && ! S_IS_DEFINED (symp))
1773 as_bad (_("local label `%s' is not defined"), name2);
1776 /* Do it again, because adjust_reloc_syms might introduce
1777 more symbols. They'll probably only be section symbols,
1778 but they'll still need to have the values computed. */
1779 resolve_symbol_value (symp);
1781 /* Skip symbols which were equated to undefined or common
1782 symbols. */
1783 if (symbol_equated_reloc_p (symp)
1784 || S_IS_WEAKREFR (symp))
1786 const char *name = S_GET_NAME (symp);
1787 if (S_IS_COMMON (symp)
1788 && !TC_FAKE_LABEL (name)
1789 && !S_IS_WEAKREFR (symp)
1790 && (!S_IS_EXTERNAL (symp) || S_IS_LOCAL (symp)))
1792 expressionS *e = symbol_get_value_expression (symp);
1793 as_bad (_("Local symbol `%s' can't be equated to common symbol `%s'"),
1794 name, S_GET_NAME (e->X_add_symbol));
1796 if (S_GET_SEGMENT (symp) == reg_section)
1798 /* Report error only if we know the symbol name. */
1799 if (S_GET_NAME (symp) != reg_section->name)
1800 as_bad (_("can't make global register symbol `%s'"),
1801 name);
1803 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
1804 continue;
1807 #ifdef obj_frob_symbol
1808 obj_frob_symbol (symp, punt);
1809 #endif
1810 #ifdef tc_frob_symbol
1811 if (! punt || symbol_used_in_reloc_p (symp))
1812 tc_frob_symbol (symp, punt);
1813 #endif
1815 /* If we don't want to keep this symbol, splice it out of
1816 the chain now. If EMIT_SECTION_SYMBOLS is 0, we never
1817 want section symbols. Otherwise, we skip local symbols
1818 and symbols that the frob_symbol macros told us to punt,
1819 but we keep such symbols if they are used in relocs. */
1820 if (symp == abs_section_sym
1821 || (! EMIT_SECTION_SYMBOLS
1822 && symbol_section_p (symp))
1823 /* Note that S_IS_EXTERNAL and S_IS_LOCAL are not always
1824 opposites. Sometimes the former checks flags and the
1825 latter examines the name... */
1826 || (!S_IS_EXTERNAL (symp)
1827 && (punt || S_IS_LOCAL (symp) ||
1828 (S_IS_WEAKREFD (symp) && ! symbol_used_p (symp)))
1829 && ! symbol_used_in_reloc_p (symp)))
1831 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
1833 /* After symbol_remove, symbol_next(symp) still returns
1834 the one that came after it in the chain. So we don't
1835 need to do any extra cleanup work here. */
1836 continue;
1839 /* Make sure we really got a value for the symbol. */
1840 if (! symbol_resolved_p (symp))
1842 as_bad (_("can't resolve value for symbol `%s'"),
1843 S_GET_NAME (symp));
1844 symbol_mark_resolved (symp);
1847 /* Set the value into the BFD symbol. Up til now the value
1848 has only been kept in the gas symbolS struct. */
1849 symbol_get_bfdsym (symp)->value = S_GET_VALUE (symp);
1851 /* A warning construct is a warning symbol followed by the
1852 symbol warned about. Don't let anything object-format or
1853 target-specific muck with it; it's ready for output. */
1854 if (symbol_get_bfdsym (symp)->flags & BSF_WARNING)
1855 skip_next_symbol = TRUE;
1859 PROGRESS (1);
1861 /* Now do any format-specific adjustments to the symbol table, such
1862 as adding file symbols. */
1863 #ifdef tc_adjust_symtab
1864 tc_adjust_symtab ();
1865 #endif
1866 #ifdef obj_adjust_symtab
1867 obj_adjust_symtab ();
1868 #endif
1870 /* Stop if there is an error. */
1871 if (had_errors ())
1872 return;
1874 /* Now that all the sizes are known, and contents correct, we can
1875 start writing to the file. */
1876 set_symtab ();
1878 /* If *_frob_file changes the symbol value at this point, it is
1879 responsible for moving the changed value into symp->bsym->value
1880 as well. Hopefully all symbol value changing can be done in
1881 *_frob_symbol. */
1882 #ifdef tc_frob_file
1883 tc_frob_file ();
1884 #endif
1885 #ifdef obj_frob_file
1886 obj_frob_file ();
1887 #endif
1889 bfd_map_over_sections (stdoutput, write_relocs, (char *) 0);
1891 #ifdef tc_frob_file_after_relocs
1892 tc_frob_file_after_relocs ();
1893 #endif
1894 #ifdef obj_frob_file_after_relocs
1895 obj_frob_file_after_relocs ();
1896 #endif
1898 bfd_map_over_sections (stdoutput, write_contents, (char *) 0);
1901 #ifdef TC_GENERIC_RELAX_TABLE
1902 /* Relax a fragment by scanning TC_GENERIC_RELAX_TABLE. */
1904 long
1905 relax_frag (segT segment, fragS *fragP, long stretch)
1907 const relax_typeS *this_type;
1908 const relax_typeS *start_type;
1909 relax_substateT next_state;
1910 relax_substateT this_state;
1911 offsetT growth;
1912 offsetT aim;
1913 addressT target;
1914 addressT address;
1915 symbolS *symbolP;
1916 const relax_typeS *table;
1918 target = fragP->fr_offset;
1919 address = fragP->fr_address;
1920 table = TC_GENERIC_RELAX_TABLE;
1921 this_state = fragP->fr_subtype;
1922 start_type = this_type = table + this_state;
1923 symbolP = fragP->fr_symbol;
1925 if (symbolP)
1927 fragS *sym_frag;
1929 sym_frag = symbol_get_frag (symbolP);
1931 #ifndef DIFF_EXPR_OK
1932 know (sym_frag != NULL);
1933 #endif
1934 know (S_GET_SEGMENT (symbolP) != absolute_section
1935 || sym_frag == &zero_address_frag);
1936 target += S_GET_VALUE (symbolP);
1938 /* If frag has yet to be reached on this pass,
1939 assume it will move by STRETCH just as we did.
1940 If this is not so, it will be because some frag
1941 between grows, and that will force another pass. */
1943 if (stretch != 0
1944 && sym_frag->relax_marker != fragP->relax_marker
1945 && S_GET_SEGMENT (symbolP) == segment)
1947 target += stretch;
1951 aim = target - address - fragP->fr_fix;
1952 #ifdef TC_PCREL_ADJUST
1953 /* Currently only the ns32k family needs this. */
1954 aim += TC_PCREL_ADJUST (fragP);
1955 #endif
1957 #ifdef md_prepare_relax_scan
1958 /* Formerly called M68K_AIM_KLUDGE. */
1959 md_prepare_relax_scan (fragP, address, aim, this_state, this_type);
1960 #endif
1962 if (aim < 0)
1964 /* Look backwards. */
1965 for (next_state = this_type->rlx_more; next_state;)
1966 if (aim >= this_type->rlx_backward)
1967 next_state = 0;
1968 else
1970 /* Grow to next state. */
1971 this_state = next_state;
1972 this_type = table + this_state;
1973 next_state = this_type->rlx_more;
1976 else
1978 /* Look forwards. */
1979 for (next_state = this_type->rlx_more; next_state;)
1980 if (aim <= this_type->rlx_forward)
1981 next_state = 0;
1982 else
1984 /* Grow to next state. */
1985 this_state = next_state;
1986 this_type = table + this_state;
1987 next_state = this_type->rlx_more;
1991 growth = this_type->rlx_length - start_type->rlx_length;
1992 if (growth != 0)
1993 fragP->fr_subtype = this_state;
1994 return growth;
1997 #endif /* defined (TC_GENERIC_RELAX_TABLE) */
1999 /* Relax_align. Advance location counter to next address that has 'alignment'
2000 lowest order bits all 0s, return size of adjustment made. */
2001 static relax_addressT
2002 relax_align (register relax_addressT address, /* Address now. */
2003 register int alignment /* Alignment (binary). */)
2005 relax_addressT mask;
2006 relax_addressT new_address;
2008 mask = ~((~0) << alignment);
2009 new_address = (address + mask) & (~mask);
2010 #ifdef LINKER_RELAXING_SHRINKS_ONLY
2011 if (linkrelax)
2012 /* We must provide lots of padding, so the linker can discard it
2013 when needed. The linker will not add extra space, ever. */
2014 new_address += (1 << alignment);
2015 #endif
2016 return (new_address - address);
2019 /* Now we have a segment, not a crowd of sub-segments, we can make
2020 fr_address values.
2022 Relax the frags.
2024 After this, all frags in this segment have addresses that are correct
2025 within the segment. Since segments live in different file addresses,
2026 these frag addresses may not be the same as final object-file
2027 addresses. */
2030 relax_segment (struct frag *segment_frag_root, segT segment, int pass)
2032 unsigned long frag_count;
2033 struct frag *fragP;
2034 relax_addressT address;
2035 int ret;
2037 /* In case md_estimate_size_before_relax() wants to make fixSs. */
2038 subseg_change (segment, 0);
2040 /* For each frag in segment: count and store (a 1st guess of)
2041 fr_address. */
2042 address = 0;
2043 for (frag_count = 0, fragP = segment_frag_root;
2044 fragP;
2045 fragP = fragP->fr_next, frag_count ++)
2047 fragP->relax_marker = 0;
2048 fragP->fr_address = address;
2049 address += fragP->fr_fix;
2051 switch (fragP->fr_type)
2053 case rs_fill:
2054 address += fragP->fr_offset * fragP->fr_var;
2055 break;
2057 case rs_align:
2058 case rs_align_code:
2059 case rs_align_test:
2061 addressT offset = relax_align (address, (int) fragP->fr_offset);
2063 if (fragP->fr_subtype != 0 && offset > fragP->fr_subtype)
2064 offset = 0;
2066 if (offset % fragP->fr_var != 0)
2068 as_bad_where (fragP->fr_file, fragP->fr_line,
2069 _("alignment padding (%lu bytes) not a multiple of %ld"),
2070 (unsigned long) offset, (long) fragP->fr_var);
2071 offset -= (offset % fragP->fr_var);
2074 address += offset;
2076 break;
2078 case rs_org:
2079 case rs_space:
2080 /* Assume .org is nugatory. It will grow with 1st relax. */
2081 break;
2083 case rs_machine_dependent:
2084 /* If fr_symbol is an expression, this call to
2085 resolve_symbol_value sets up the correct segment, which will
2086 likely be needed in md_estimate_size_before_relax. */
2087 if (fragP->fr_symbol)
2088 resolve_symbol_value (fragP->fr_symbol);
2090 address += md_estimate_size_before_relax (fragP, segment);
2091 break;
2093 #ifndef WORKING_DOT_WORD
2094 /* Broken words don't concern us yet. */
2095 case rs_broken_word:
2096 break;
2097 #endif
2099 case rs_leb128:
2100 /* Initial guess is always 1; doing otherwise can result in
2101 stable solutions that are larger than the minimum. */
2102 address += fragP->fr_offset = 1;
2103 break;
2105 case rs_cfa:
2106 address += eh_frame_estimate_size_before_relax (fragP);
2107 break;
2109 case rs_dwarf2dbg:
2110 address += dwarf2dbg_estimate_size_before_relax (fragP);
2111 break;
2113 default:
2114 BAD_CASE (fragP->fr_type);
2115 break;
2119 /* Do relax(). */
2121 unsigned long max_iterations;
2123 /* Cumulative address adjustment. */
2124 offsetT stretch;
2126 /* Have we made any adjustment this pass? We can't just test
2127 stretch because one piece of code may have grown and another
2128 shrank. */
2129 int stretched;
2131 /* Most horrible, but gcc may give us some exception data that
2132 is impossible to assemble, of the form
2134 .align 4
2135 .byte 0, 0
2136 .uleb128 end - start
2137 start:
2138 .space 128*128 - 1
2139 .align 4
2140 end:
2142 If the leb128 is two bytes in size, then end-start is 128*128,
2143 which requires a three byte leb128. If the leb128 is three
2144 bytes in size, then end-start is 128*128-1, which requires a
2145 two byte leb128. We work around this dilemma by inserting
2146 an extra 4 bytes of alignment just after the .align. This
2147 works because the data after the align is accessed relative to
2148 the end label.
2150 This counter is used in a tiny state machine to detect
2151 whether a leb128 followed by an align is impossible to
2152 relax. */
2153 int rs_leb128_fudge = 0;
2155 /* We want to prevent going into an infinite loop where one frag grows
2156 depending upon the location of a symbol which is in turn moved by
2157 the growing frag. eg:
2159 foo = .
2160 .org foo+16
2161 foo = .
2163 So we dictate that this algorithm can be at most O2. */
2164 max_iterations = frag_count * frag_count;
2165 /* Check for overflow. */
2166 if (max_iterations < frag_count)
2167 max_iterations = frag_count;
2169 ret = 0;
2172 stretch = 0;
2173 stretched = 0;
2175 for (fragP = segment_frag_root; fragP; fragP = fragP->fr_next)
2177 offsetT growth = 0;
2178 addressT was_address;
2179 offsetT offset;
2180 symbolS *symbolP;
2182 fragP->relax_marker ^= 1;
2183 was_address = fragP->fr_address;
2184 address = fragP->fr_address += stretch;
2185 symbolP = fragP->fr_symbol;
2186 offset = fragP->fr_offset;
2188 switch (fragP->fr_type)
2190 case rs_fill: /* .fill never relaxes. */
2191 growth = 0;
2192 break;
2194 #ifndef WORKING_DOT_WORD
2195 /* JF: This is RMS's idea. I do *NOT* want to be blamed
2196 for it I do not want to write it. I do not want to have
2197 anything to do with it. This is not the proper way to
2198 implement this misfeature. */
2199 case rs_broken_word:
2201 struct broken_word *lie;
2202 struct broken_word *untruth;
2204 /* Yes this is ugly (storing the broken_word pointer
2205 in the symbol slot). Still, this whole chunk of
2206 code is ugly, and I don't feel like doing anything
2207 about it. Think of it as stubbornness in action. */
2208 growth = 0;
2209 for (lie = (struct broken_word *) (fragP->fr_symbol);
2210 lie && lie->dispfrag == fragP;
2211 lie = lie->next_broken_word)
2214 if (lie->added)
2215 continue;
2217 offset = (S_GET_VALUE (lie->add)
2218 + lie->addnum
2219 - S_GET_VALUE (lie->sub));
2220 if (offset <= -32768 || offset >= 32767)
2222 if (flag_warn_displacement)
2224 char buf[50];
2225 sprint_value (buf, (addressT) lie->addnum);
2226 as_warn_where (fragP->fr_file, fragP->fr_line,
2227 _(".word %s-%s+%s didn't fit"),
2228 S_GET_NAME (lie->add),
2229 S_GET_NAME (lie->sub),
2230 buf);
2232 lie->added = 1;
2233 if (fragP->fr_subtype == 0)
2235 fragP->fr_subtype++;
2236 growth += md_short_jump_size;
2238 for (untruth = lie->next_broken_word;
2239 untruth && untruth->dispfrag == lie->dispfrag;
2240 untruth = untruth->next_broken_word)
2241 if ((symbol_get_frag (untruth->add)
2242 == symbol_get_frag (lie->add))
2243 && (S_GET_VALUE (untruth->add)
2244 == S_GET_VALUE (lie->add)))
2246 untruth->added = 2;
2247 untruth->use_jump = lie;
2249 growth += md_long_jump_size;
2253 break;
2254 } /* case rs_broken_word */
2255 #endif
2256 case rs_align:
2257 case rs_align_code:
2258 case rs_align_test:
2260 addressT oldoff, newoff;
2262 oldoff = relax_align (was_address + fragP->fr_fix,
2263 (int) offset);
2264 newoff = relax_align (address + fragP->fr_fix,
2265 (int) offset);
2267 if (fragP->fr_subtype != 0)
2269 if (oldoff > fragP->fr_subtype)
2270 oldoff = 0;
2271 if (newoff > fragP->fr_subtype)
2272 newoff = 0;
2275 growth = newoff - oldoff;
2277 /* If this align happens to follow a leb128 and
2278 we have determined that the leb128 is bouncing
2279 in size, then break the cycle by inserting an
2280 extra alignment. */
2281 if (growth < 0
2282 && (rs_leb128_fudge & 16) != 0
2283 && (rs_leb128_fudge & 15) >= 2)
2285 segment_info_type *seginfo = seg_info (segment);
2286 struct obstack *ob = &seginfo->frchainP->frch_obstack;
2287 struct frag *newf;
2289 newf = frag_alloc (ob);
2290 obstack_blank_fast (ob, fragP->fr_var);
2291 obstack_finish (ob);
2292 memcpy (newf, fragP, SIZEOF_STRUCT_FRAG);
2293 memcpy (newf->fr_literal,
2294 fragP->fr_literal + fragP->fr_fix,
2295 fragP->fr_var);
2296 newf->fr_type = rs_fill;
2297 newf->fr_fix = 0;
2298 newf->fr_offset = (((offsetT) 1 << fragP->fr_offset)
2299 / fragP->fr_var);
2300 if (newf->fr_offset * newf->fr_var
2301 != (offsetT) 1 << fragP->fr_offset)
2303 newf->fr_offset = (offsetT) 1 << fragP->fr_offset;
2304 newf->fr_var = 1;
2306 /* Include growth of new frag, because rs_fill
2307 frags don't normally grow. */
2308 growth += newf->fr_offset * newf->fr_var;
2309 /* The new frag address is newoff. Adjust this
2310 for the amount we'll add when we process the
2311 new frag. */
2312 newf->fr_address = newoff - stretch - growth;
2313 newf->relax_marker ^= 1;
2314 fragP->fr_next = newf;
2315 #ifdef DEBUG
2316 as_warn (_("padding added"));
2317 #endif
2320 break;
2322 case rs_org:
2324 addressT target = offset;
2325 addressT after;
2327 if (symbolP)
2329 /* Convert from an actual address to an octet offset
2330 into the section. Here it is assumed that the
2331 section's VMA is zero, and can omit subtracting it
2332 from the symbol's value to get the address offset. */
2333 know (S_GET_SEGMENT (symbolP)->vma == 0);
2334 target += S_GET_VALUE (symbolP) * OCTETS_PER_BYTE;
2337 know (fragP->fr_next);
2338 after = fragP->fr_next->fr_address + stretch;
2339 growth = target - after;
2340 if (growth < 0)
2342 growth = 0;
2344 /* Don't error on first few frag relax passes.
2345 The symbol might be an expression involving
2346 symbol values from other sections. If those
2347 sections have not yet been processed their
2348 frags will all have zero addresses, so we
2349 will calculate incorrect values for them. The
2350 number of passes we allow before giving an
2351 error is somewhat arbitrary. It should be at
2352 least one, with larger values requiring
2353 increasingly contrived dependencies between
2354 frags to trigger a false error. */
2355 if (pass < 2)
2357 /* Force another pass. */
2358 ret = 1;
2359 break;
2362 /* Growth may be negative, but variable part of frag
2363 cannot have fewer than 0 chars. That is, we can't
2364 .org backwards. */
2365 as_bad_where (fragP->fr_file, fragP->fr_line,
2366 _("attempt to move .org backwards"));
2368 /* We've issued an error message. Change the
2369 frag to avoid cascading errors. */
2370 fragP->fr_type = rs_align;
2371 fragP->fr_subtype = 0;
2372 fragP->fr_offset = 0;
2373 fragP->fr_fix = after - address;
2376 break;
2378 case rs_space:
2379 growth = 0;
2380 if (symbolP)
2382 offsetT amount;
2384 amount = S_GET_VALUE (symbolP);
2385 if (S_GET_SEGMENT (symbolP) != absolute_section
2386 || S_IS_COMMON (symbolP)
2387 || ! S_IS_DEFINED (symbolP))
2389 as_bad_where (fragP->fr_file, fragP->fr_line,
2390 _(".space specifies non-absolute value"));
2391 /* Prevent repeat of this error message. */
2392 fragP->fr_symbol = 0;
2394 else if (amount < 0)
2396 /* Don't error on first few frag relax passes.
2397 See rs_org comment for a longer explanation. */
2398 if (pass < 2)
2400 ret = 1;
2401 break;
2404 as_warn_where (fragP->fr_file, fragP->fr_line,
2405 _(".space or .fill with negative value, ignored"));
2406 fragP->fr_symbol = 0;
2408 else
2409 growth = (was_address + fragP->fr_fix + amount
2410 - fragP->fr_next->fr_address);
2412 break;
2414 case rs_machine_dependent:
2415 #ifdef md_relax_frag
2416 growth = md_relax_frag (segment, fragP, stretch);
2417 #else
2418 #ifdef TC_GENERIC_RELAX_TABLE
2419 /* The default way to relax a frag is to look through
2420 TC_GENERIC_RELAX_TABLE. */
2421 growth = relax_frag (segment, fragP, stretch);
2422 #endif /* TC_GENERIC_RELAX_TABLE */
2423 #endif
2424 break;
2426 case rs_leb128:
2428 valueT value;
2429 offsetT size;
2431 value = resolve_symbol_value (fragP->fr_symbol);
2432 size = sizeof_leb128 (value, fragP->fr_subtype);
2433 growth = size - fragP->fr_offset;
2434 fragP->fr_offset = size;
2436 break;
2438 case rs_cfa:
2439 growth = eh_frame_relax_frag (fragP);
2440 break;
2442 case rs_dwarf2dbg:
2443 growth = dwarf2dbg_relax_frag (fragP);
2444 break;
2446 default:
2447 BAD_CASE (fragP->fr_type);
2448 break;
2450 if (growth)
2452 stretch += growth;
2453 stretched = 1;
2454 if (fragP->fr_type == rs_leb128)
2455 rs_leb128_fudge += 16;
2456 else if (fragP->fr_type == rs_align
2457 && (rs_leb128_fudge & 16) != 0
2458 && stretch == 0)
2459 rs_leb128_fudge += 16;
2460 else
2461 rs_leb128_fudge = 0;
2465 if (stretch == 0
2466 && (rs_leb128_fudge & 16) == 0
2467 && (rs_leb128_fudge & -16) != 0)
2468 rs_leb128_fudge += 1;
2469 else
2470 rs_leb128_fudge = 0;
2472 /* Until nothing further to relax. */
2473 while (stretched && -- max_iterations);
2475 if (stretched)
2476 as_fatal (_("Infinite loop encountered whilst attempting to compute the addresses of symbols in section %s"),
2477 segment_name (segment));
2480 for (fragP = segment_frag_root; fragP; fragP = fragP->fr_next)
2481 if (fragP->last_fr_address != fragP->fr_address)
2483 fragP->last_fr_address = fragP->fr_address;
2484 ret = 1;
2486 return ret;
2489 void
2490 number_to_chars_bigendian (char *buf, valueT val, int n)
2492 if (n <= 0)
2493 abort ();
2494 while (n--)
2496 buf[n] = val & 0xff;
2497 val >>= 8;
2501 void
2502 number_to_chars_littleendian (char *buf, valueT val, int n)
2504 if (n <= 0)
2505 abort ();
2506 while (n--)
2508 *buf++ = val & 0xff;
2509 val >>= 8;
2513 void
2514 write_print_statistics (FILE *file)
2516 fprintf (file, "fixups: %d\n", n_fixups);
2519 /* For debugging. */
2520 extern int indent_level;
2522 void
2523 print_fixup (fixS *fixp)
2525 indent_level = 1;
2526 fprintf (stderr, "fix ");
2527 fprintf_vma (stderr, (bfd_vma)((bfd_hostptr_t) fixp));
2528 fprintf (stderr, " %s:%d",fixp->fx_file, fixp->fx_line);
2529 if (fixp->fx_pcrel)
2530 fprintf (stderr, " pcrel");
2531 if (fixp->fx_pcrel_adjust)
2532 fprintf (stderr, " pcrel_adjust=%d", fixp->fx_pcrel_adjust);
2533 if (fixp->fx_im_disp)
2535 #ifdef TC_NS32K
2536 fprintf (stderr, " im_disp=%d", fixp->fx_im_disp);
2537 #else
2538 fprintf (stderr, " im_disp");
2539 #endif
2541 if (fixp->fx_tcbit)
2542 fprintf (stderr, " tcbit");
2543 if (fixp->fx_done)
2544 fprintf (stderr, " done");
2545 fprintf (stderr, "\n size=%d frag=", fixp->fx_size);
2546 fprintf_vma (stderr, (bfd_vma) ((bfd_hostptr_t) fixp->fx_frag));
2547 fprintf (stderr, " where=%ld offset=%lx addnumber=%lx",
2548 (long) fixp->fx_where,
2549 (unsigned long) fixp->fx_offset,
2550 (unsigned long) fixp->fx_addnumber);
2551 fprintf (stderr, "\n %s (%d)", bfd_get_reloc_code_name (fixp->fx_r_type),
2552 fixp->fx_r_type);
2553 if (fixp->fx_addsy)
2555 fprintf (stderr, "\n +<");
2556 print_symbol_value_1 (stderr, fixp->fx_addsy);
2557 fprintf (stderr, ">");
2559 if (fixp->fx_subsy)
2561 fprintf (stderr, "\n -<");
2562 print_symbol_value_1 (stderr, fixp->fx_subsy);
2563 fprintf (stderr, ">");
2565 fprintf (stderr, "\n");
2566 #ifdef TC_FIX_DATA_PRINT
2567 TC_FIX_DATA_PRINT (stderr, fixp);
2568 #endif