1 /* write.c - emit .o file
2 Copyright 1986, 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
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 2, or (at your option)
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, 59 Temple Place - Suite 330, Boston, MA
23 /* This thing should be set up to do byteordering correctly. But... */
28 #include "output-file.h"
29 #include "dwarf2dbg.h"
31 /* This looks like a good idea. Let's try turning it on always, for now. */
32 #undef BFD_FAST_SECTION_FILL
33 #define BFD_FAST_SECTION_FILL
35 #ifndef TC_ADJUST_RELOC_COUNT
36 #define TC_ADJUST_RELOC_COUNT(FIXP,COUNT)
39 #ifndef TC_FORCE_RELOCATION
40 #define TC_FORCE_RELOCATION(FIXP) 0
43 #ifndef TC_FORCE_RELOCATION_SECTION
44 #define TC_FORCE_RELOCATION_SECTION(FIXP,SEG) TC_FORCE_RELOCATION(FIXP)
47 #ifndef TC_LINKRELAX_FIXUP
48 #define TC_LINKRELAX_FIXUP(SEG) 1
51 #ifndef TC_FIX_ADJUSTABLE
52 #define TC_FIX_ADJUSTABLE(fix) 1
55 #ifndef MD_PCREL_FROM_SECTION
56 #define MD_PCREL_FROM_SECTION(FIXP, SEC) md_pcrel_from(FIXP)
59 #ifndef WORKING_DOT_WORD
60 extern CONST int md_short_jump_size;
61 extern CONST int md_long_jump_size;
64 /* Used to control final evaluation of expressions that are more
65 complex than symbol + constant. 1 means set final value for simple
66 expressions, 2 means set final value for more complex expressions. */
67 int finalize_syms = 1;
69 int symbol_table_frozen;
70 void print_fixup PARAMS ((fixS *));
73 static void renumber_sections PARAMS ((bfd *, asection *, PTR));
75 /* We generally attach relocs to frag chains. However, after we have
76 chained these all together into a segment, any relocs we add after
77 that must be attached to a segment. This will include relocs added
78 in md_estimate_size_for_relax, for example. */
79 static int frags_chained = 0;
85 struct frag *text_frag_root;
86 struct frag *data_frag_root;
87 struct frag *bss_frag_root;
89 struct frag *text_last_frag; /* Last frag in segment. */
90 struct frag *data_last_frag; /* Last frag in segment. */
91 static struct frag *bss_last_frag; /* Last frag in segment. */
95 static object_headers headers;
98 long string_byte_count;
99 char *next_object_file_charP; /* Tracks object file bytes. */
102 int magic_number_for_object_file = DEFAULT_MAGIC_NUMBER_FOR_OBJECT_FILE;
105 #endif /* BFD_ASSEMBLER */
110 static fixS *fix_new_internal PARAMS ((fragS *, int where, int size,
111 symbolS *add, symbolS *sub,
112 offsetT offset, int pcrel,
113 bfd_reloc_code_real_type r_type));
115 static fixS *fix_new_internal PARAMS ((fragS *, int where, int size,
116 symbolS *add, symbolS *sub,
117 offsetT offset, int pcrel,
120 #if defined (BFD_ASSEMBLER) || (!defined (BFD) && !defined (OBJ_VMS))
121 static long fixup_segment PARAMS ((fixS * fixP, segT this_segment_type));
123 static relax_addressT relax_align PARAMS ((relax_addressT addr, int align));
124 #if defined (BFD_ASSEMBLER) || ! defined (BFD)
125 static fragS *chain_frchains_together_1 PARAMS ((segT, struct frchain *));
128 static void chain_frchains_together PARAMS ((bfd *, segT, PTR));
129 static void cvt_frag_to_fill PARAMS ((segT, fragS *));
130 static void adjust_reloc_syms PARAMS ((bfd *, asection *, PTR));
131 static void write_relocs PARAMS ((bfd *, asection *, PTR));
132 static void write_contents PARAMS ((bfd *, asection *, PTR));
133 static void set_symtab PARAMS ((void));
135 #if defined (BFD_ASSEMBLER) || (! defined (BFD) && ! defined (OBJ_AOUT))
136 static void merge_data_into_text PARAMS ((void));
138 #if ! defined (BFD_ASSEMBLER) && ! defined (BFD)
139 static void cvt_frag_to_fill PARAMS ((object_headers *, segT, fragS *));
140 static void remove_subsegs PARAMS ((frchainS *, int, fragS **, fragS **));
141 static void relax_and_size_all_segments PARAMS ((void));
143 #if defined (BFD_ASSEMBLER) && defined (OBJ_COFF) && defined (TE_GO32)
144 static void set_segment_vma PARAMS ((bfd *, asection *, PTR));
147 /* Create a fixS in obstack 'notes'. */
150 fix_new_internal (frag, where, size, add_symbol, sub_symbol, offset, pcrel,
152 fragS *frag; /* Which frag? */
153 int where; /* Where in that frag? */
154 int size; /* 1, 2, or 4 usually. */
155 symbolS *add_symbol; /* X_add_symbol. */
156 symbolS *sub_symbol; /* X_op_symbol. */
157 offsetT offset; /* X_add_number. */
158 int pcrel; /* TRUE if PC-relative relocation. */
160 bfd_reloc_code_real_type r_type; /* Relocation type. */
162 int r_type; /* Relocation type. */
169 fixP = (fixS *) obstack_alloc (¬es, sizeof (fixS));
171 fixP->fx_frag = frag;
172 fixP->fx_where = where;
173 fixP->fx_size = size;
174 /* We've made fx_size a narrow field; check that it's wide enough. */
175 if (fixP->fx_size != size)
177 as_bad (_("field fx_size too small to hold %d"), size);
180 fixP->fx_addsy = add_symbol;
181 fixP->fx_subsy = sub_symbol;
182 fixP->fx_offset = offset;
183 fixP->fx_pcrel = pcrel;
185 #if defined(NEED_FX_R_TYPE) || defined (BFD_ASSEMBLER)
186 fixP->fx_r_type = r_type;
188 fixP->fx_im_disp = 0;
189 fixP->fx_pcrel_adjust = 0;
190 fixP->fx_bit_fixP = 0;
191 fixP->fx_addnumber = 0;
194 fixP->fx_no_overflow = 0;
198 fixP->fx_cgen.insn = NULL;
199 fixP->fx_cgen.opinfo = 0;
203 TC_INIT_FIX_DATA (fixP);
206 as_where (&fixP->fx_file, &fixP->fx_line);
208 /* Usually, we want relocs sorted numerically, but while
209 comparing to older versions of gas that have relocs
210 reverse sorted, it is convenient to have this compile
211 time option. xoxorich. */
215 fixS **seg_fix_rootP = (frags_chained
216 ? &seg_info (now_seg)->fix_root
217 : &frchain_now->fix_root);
218 fixS **seg_fix_tailP = (frags_chained
219 ? &seg_info (now_seg)->fix_tail
220 : &frchain_now->fix_tail);
223 #ifdef REVERSE_SORT_RELOCS
225 fixP->fx_next = *seg_fix_rootP;
226 *seg_fix_rootP = fixP;
228 #else /* REVERSE_SORT_RELOCS */
230 fixP->fx_next = NULL;
233 (*seg_fix_tailP)->fx_next = fixP;
235 *seg_fix_rootP = fixP;
236 *seg_fix_tailP = fixP;
238 #endif /* REVERSE_SORT_RELOCS */
244 /* Create a fixup relative to a symbol (plus a constant). */
247 fix_new (frag, where, size, add_symbol, offset, pcrel, r_type)
248 fragS *frag; /* Which frag? */
249 int where; /* Where in that frag? */
250 int size; /* 1, 2, or 4 usually. */
251 symbolS *add_symbol; /* X_add_symbol. */
252 offsetT offset; /* X_add_number. */
253 int pcrel; /* TRUE if PC-relative relocation. */
255 bfd_reloc_code_real_type r_type; /* Relocation type. */
257 int r_type; /* Relocation type. */
260 return fix_new_internal (frag, where, size, add_symbol,
261 (symbolS *) NULL, offset, pcrel, r_type);
264 /* Create a fixup for an expression. Currently we only support fixups
265 for difference expressions. That is itself more than most object
266 file formats support anyhow. */
269 fix_new_exp (frag, where, size, exp, pcrel, r_type)
270 fragS *frag; /* Which frag? */
271 int where; /* Where in that frag? */
272 int size; /* 1, 2, or 4 usually. */
273 expressionS *exp; /* Expression. */
274 int pcrel; /* TRUE if PC-relative relocation. */
276 bfd_reloc_code_real_type r_type; /* Relocation type. */
278 int r_type; /* Relocation type. */
291 as_bad (_("register value used as expression"));
295 /* This comes up when _GLOBAL_OFFSET_TABLE_+(.-L0) is read, if
296 the difference expression cannot immediately be reduced. */
298 symbolS *stmp = make_expr_symbol (exp);
300 exp->X_op = O_symbol;
301 exp->X_op_symbol = 0;
302 exp->X_add_symbol = stmp;
303 exp->X_add_number = 0;
305 return fix_new_exp (frag, where, size, exp, pcrel, r_type);
309 add = exp->X_add_symbol;
310 off = exp->X_add_number;
312 #if defined(BFD_ASSEMBLER)
313 r_type = BFD_RELOC_RVA;
315 #if defined(TC_RVA_RELOC)
316 r_type = TC_RVA_RELOC;
318 as_fatal (_("rva not supported"));
324 sub = exp->X_add_symbol;
325 off = exp->X_add_number;
329 sub = exp->X_op_symbol;
332 add = exp->X_add_symbol;
335 off = exp->X_add_number;
339 add = make_expr_symbol (exp);
343 return fix_new_internal (frag, where, size, add, sub, off, pcrel, r_type);
346 /* Append a string onto another string, bumping the pointer along. */
348 append (charPP, fromP, length)
351 unsigned long length;
353 /* Don't trust memcpy() of 0 chars. */
357 memcpy (*charPP, fromP, length);
361 #ifndef BFD_ASSEMBLER
362 int section_alignment[SEG_MAXIMUM_ORDINAL];
365 /* This routine records the largest alignment seen for each segment.
366 If the beginning of the segment is aligned on the worst-case
367 boundary, all of the other alignments within it will work. At
368 least one object format really uses this info. */
371 record_alignment (seg, align)
372 /* Segment to which alignment pertains. */
374 /* Alignment, as a power of 2 (e.g., 1 => 2-byte boundary, 2 => 4-byte
378 if (seg == absolute_section)
381 if ((unsigned int) align > bfd_get_section_alignment (stdoutput, seg))
382 bfd_set_section_alignment (stdoutput, seg, align);
384 if (align > section_alignment[(int) seg])
385 section_alignment[(int) seg] = align;
390 get_recorded_alignment (seg)
393 if (seg == absolute_section)
396 return bfd_get_section_alignment (stdoutput, seg);
398 return section_alignment[(int) seg];
404 /* Reset the section indices after removing the gas created sections. */
407 renumber_sections (abfd, sec, countparg)
408 bfd *abfd ATTRIBUTE_UNUSED;
412 int *countp = (int *) countparg;
414 sec->index = *countp;
418 #endif /* defined (BFD_ASSEMBLER) */
420 #if defined (BFD_ASSEMBLER) || ! defined (BFD)
423 chain_frchains_together_1 (section, frchp)
425 struct frchain *frchp;
427 fragS dummy, *prev_frag = &dummy;
429 fixS fix_dummy, *prev_fix = &fix_dummy;
432 for (; frchp && frchp->frch_seg == section; frchp = frchp->frch_next)
434 prev_frag->fr_next = frchp->frch_root;
435 prev_frag = frchp->frch_last;
436 assert (prev_frag->fr_type != 0);
438 if (frchp->fix_root != (fixS *) NULL)
440 if (seg_info (section)->fix_root == (fixS *) NULL)
441 seg_info (section)->fix_root = frchp->fix_root;
442 prev_fix->fx_next = frchp->fix_root;
443 seg_info (section)->fix_tail = frchp->fix_tail;
444 prev_fix = frchp->fix_tail;
448 assert (prev_frag->fr_type != 0);
449 prev_frag->fr_next = 0;
458 chain_frchains_together (abfd, section, xxx)
459 bfd *abfd ATTRIBUTE_UNUSED;
461 PTR xxx ATTRIBUTE_UNUSED;
463 segment_info_type *info;
465 /* BFD may have introduced its own sections without using
466 subseg_new, so it is possible that seg_info is NULL. */
467 info = seg_info (section);
468 if (info != (segment_info_type *) NULL)
469 info->frchainP->frch_last
470 = chain_frchains_together_1 (section, info->frchainP);
472 /* Now that we've chained the frags together, we must add new fixups
473 to the segment, not to the frag chain. */
479 #if !defined (BFD) && !defined (BFD_ASSEMBLER)
482 remove_subsegs (head, seg, root, last)
488 *root = head->frch_root;
489 *last = chain_frchains_together_1 (seg, head);
494 #if defined (BFD_ASSEMBLER) || !defined (BFD)
498 cvt_frag_to_fill (sec, fragP)
499 segT sec ATTRIBUTE_UNUSED;
503 cvt_frag_to_fill (headersP, sec, fragP)
504 object_headers *headersP;
509 switch (fragP->fr_type)
517 HANDLE_ALIGN (fragP);
519 know (fragP->fr_next != NULL);
520 fragP->fr_offset = (fragP->fr_next->fr_address
522 - fragP->fr_fix) / fragP->fr_var;
523 if (fragP->fr_offset < 0)
525 as_bad_where (fragP->fr_file, fragP->fr_line,
526 _("attempt to .org/.space backwards? (%ld)"),
527 (long) fragP->fr_offset);
529 fragP->fr_type = rs_fill;
537 valueT value = S_GET_VALUE (fragP->fr_symbol);
540 size = output_leb128 (fragP->fr_literal + fragP->fr_fix, value,
543 fragP->fr_fix += size;
544 fragP->fr_type = rs_fill;
546 fragP->fr_offset = 0;
547 fragP->fr_symbol = NULL;
552 eh_frame_convert_frag (fragP);
556 dwarf2dbg_convert_frag (fragP);
559 case rs_machine_dependent:
561 md_convert_frag (stdoutput, sec, fragP);
563 md_convert_frag (headersP, sec, fragP);
566 assert (fragP->fr_next == NULL
567 || ((offsetT) (fragP->fr_next->fr_address - fragP->fr_address)
570 /* After md_convert_frag, we make the frag into a ".space 0".
571 md_convert_frag() should set up any fixSs and constants
576 #ifndef WORKING_DOT_WORD
579 struct broken_word *lie;
581 if (fragP->fr_subtype)
583 fragP->fr_fix += md_short_jump_size;
584 for (lie = (struct broken_word *) (fragP->fr_symbol);
585 lie && lie->dispfrag == fragP;
586 lie = lie->next_broken_word)
588 fragP->fr_fix += md_long_jump_size;
596 BAD_CASE (fragP->fr_type);
601 #endif /* defined (BFD_ASSEMBLER) || !defined (BFD) */
604 static void relax_seg PARAMS ((bfd *, asection *, PTR));
606 relax_seg (abfd, sec, xxx)
607 bfd *abfd ATTRIBUTE_UNUSED;
611 segment_info_type *seginfo = seg_info (sec);
613 if (seginfo && seginfo->frchainP
614 && relax_segment (seginfo->frchainP->frch_root, sec))
616 int *result = (int *) xxx;
621 static void size_seg PARAMS ((bfd *, asection *, PTR));
623 size_seg (abfd, sec, xxx)
626 PTR xxx ATTRIBUTE_UNUSED;
630 segment_info_type *seginfo;
632 valueT size, newsize;
634 subseg_change (sec, 0);
636 seginfo = seg_info (sec);
637 if (seginfo && seginfo->frchainP)
639 for (fragp = seginfo->frchainP->frch_root; fragp; fragp = fragp->fr_next)
640 cvt_frag_to_fill (sec, fragp);
641 for (fragp = seginfo->frchainP->frch_root;
643 fragp = fragp->fr_next)
644 /* Walk to last elt. */
646 size = fragp->fr_address + fragp->fr_fix;
651 flags = bfd_get_section_flags (abfd, sec);
653 if (size > 0 && ! seginfo->bss)
654 flags |= SEC_HAS_CONTENTS;
656 /* @@ This is just an approximation. */
657 if (seginfo && seginfo->fix_root)
661 x = bfd_set_section_flags (abfd, sec, flags);
664 newsize = md_section_align (sec, size);
665 x = bfd_set_section_size (abfd, sec, newsize);
668 /* If the size had to be rounded up, add some padding in the last
670 assert (newsize >= size);
673 fragS *last = seginfo->frchainP->frch_last;
674 fragp = seginfo->frchainP->frch_root;
675 while (fragp->fr_next != last)
676 fragp = fragp->fr_next;
677 last->fr_address = size;
678 fragp->fr_offset += newsize - size;
681 #ifdef tc_frob_section
682 tc_frob_section (sec);
684 #ifdef obj_frob_section
685 obj_frob_section (sec);
691 dump_section_relocs (abfd, sec, stream_)
692 bfd *abfd ATTRIBUTE_UNUSED;
696 FILE *stream = (FILE *) stream_;
697 segment_info_type *seginfo = seg_info (sec);
698 fixS *fixp = seginfo->fix_root;
703 fprintf (stream, "sec %s relocs:\n", sec->name);
706 symbolS *s = fixp->fx_addsy;
708 fprintf (stream, " %08lx: type %d ", (unsigned long) fixp,
709 (int) fixp->fx_r_type);
711 fprintf (stream, "no sym\n");
714 print_symbol_value_1 (stream, s);
715 fprintf (stream, "\n");
717 fixp = fixp->fx_next;
721 #define dump_section_relocs(ABFD,SEC,STREAM) ((void) 0)
724 #ifndef EMIT_SECTION_SYMBOLS
725 #define EMIT_SECTION_SYMBOLS 1
729 adjust_reloc_syms (abfd, sec, xxx)
730 bfd *abfd ATTRIBUTE_UNUSED;
732 PTR xxx ATTRIBUTE_UNUSED;
734 segment_info_type *seginfo = seg_info (sec);
740 dump_section_relocs (abfd, sec, stderr);
742 for (fixp = seginfo->fix_root; fixp; fixp = fixp->fx_next)
746 else if (fixp->fx_addsy)
752 fprintf (stderr, "\n\nadjusting fixup:\n");
756 sym = fixp->fx_addsy;
758 /* All symbols should have already been resolved at this
759 point. It is possible to see unresolved expression
760 symbols, though, since they are not in the regular symbol
763 resolve_symbol_value (sym, finalize_syms);
765 if (fixp->fx_subsy != NULL)
766 resolve_symbol_value (fixp->fx_subsy, finalize_syms);
768 /* If this symbol is equated to an undefined symbol, convert
769 the fixup to being against that symbol. */
770 if (sym != NULL && symbol_equated_p (sym)
771 && (! S_IS_DEFINED (sym) || S_IS_COMMON (sym)))
773 fixp->fx_offset += symbol_get_value_expression (sym)->X_add_number;
774 sym = symbol_get_value_expression (sym)->X_add_symbol;
775 fixp->fx_addsy = sym;
778 if (sym != NULL && symbol_mri_common_p (sym))
780 /* These symbols are handled specially in fixup_segment. */
784 symsec = S_GET_SEGMENT (sym);
789 if (bfd_is_abs_section (symsec))
791 /* The fixup_segment routine will not use this symbol in a
792 relocation unless TC_FORCE_RELOCATION returns 1. */
793 if (TC_FORCE_RELOCATION (fixp))
795 symbol_mark_used_in_reloc (fixp->fx_addsy);
796 #ifdef UNDEFINED_DIFFERENCE_OK
797 if (fixp->fx_subsy != NULL)
798 symbol_mark_used_in_reloc (fixp->fx_subsy);
804 /* If it's one of these sections, assume the symbol is
805 definitely going to be output. The code in
806 md_estimate_size_before_relax in tc-mips.c uses this test
807 as well, so if you change this code you should look at that
809 if (bfd_is_und_section (symsec)
810 || bfd_is_com_section (symsec))
812 symbol_mark_used_in_reloc (fixp->fx_addsy);
813 #ifdef UNDEFINED_DIFFERENCE_OK
814 /* We have the difference of an undefined symbol and some
815 other symbol. Make sure to mark the other symbol as used
816 in a relocation so that it will always be output. */
818 symbol_mark_used_in_reloc (fixp->fx_subsy);
823 /* Don't try to reduce relocs which refer to non-local symbols
824 in .linkonce sections. It can lead to confusion when a
825 debugging section refers to a .linkonce section. I hope
826 this will always be correct. */
827 if (symsec != sec && ! S_IS_LOCAL (sym))
833 if ((bfd_get_section_flags (stdoutput, symsec) & SEC_LINK_ONCE)
838 /* The GNU toolchain uses an extension for ELF: a section
839 beginning with the magic string .gnu.linkonce is a
841 if (strncmp (segment_name (symsec), ".gnu.linkonce",
842 sizeof ".gnu.linkonce" - 1) == 0)
848 symbol_mark_used_in_reloc (fixp->fx_addsy);
849 #ifdef UNDEFINED_DIFFERENCE_OK
850 if (fixp->fx_subsy != NULL)
851 symbol_mark_used_in_reloc (fixp->fx_subsy);
857 /* Since we're reducing to section symbols, don't attempt to reduce
858 anything that's already using one. */
859 if (symbol_section_p (sym))
861 symbol_mark_used_in_reloc (fixp->fx_addsy);
866 /* We can never adjust a reloc against a weak symbol. If we
867 did, and the weak symbol was overridden by a real symbol
868 somewhere else, then our relocation would be pointing at
869 the wrong area of memory. */
872 symbol_mark_used_in_reloc (fixp->fx_addsy);
876 /* Never adjust a reloc against local symbol in a merge section. */
877 if (symsec->flags & SEC_MERGE)
879 symbol_mark_used_in_reloc (fixp->fx_addsy);
884 /* Is there some other reason we can't adjust this one? (E.g.,
885 call/bal links in i960-bout symbols.) */
886 #ifdef obj_fix_adjustable
887 if (! obj_fix_adjustable (fixp))
889 symbol_mark_used_in_reloc (fixp->fx_addsy);
894 /* Is there some other (target cpu dependent) reason we can't adjust
895 this one? (E.g. relocations involving function addresses on
897 #ifdef tc_fix_adjustable
898 if (! tc_fix_adjustable (fixp))
900 symbol_mark_used_in_reloc (fixp->fx_addsy);
905 /* If the section symbol isn't going to be output, the relocs
906 at least should still work. If not, figure out what to do
907 when we run into that case.
909 We refetch the segment when calling section_symbol, rather
910 than using symsec, because S_GET_VALUE may wind up changing
911 the section when it calls resolve_symbol_value. */
912 fixp->fx_offset += S_GET_VALUE (sym);
913 fixp->fx_addsy = section_symbol (S_GET_SEGMENT (sym));
914 symbol_mark_used_in_reloc (fixp->fx_addsy);
916 fprintf (stderr, "\nadjusted fixup:\n");
923 #if 1 /* def RELOC_REQUIRES_SYMBOL */
926 /* There was no symbol required by this relocation. However,
927 BFD doesn't really handle relocations without symbols well.
928 (At least, the COFF support doesn't.) So for now we fake up
929 a local symbol in the absolute section. */
931 fixp->fx_addsy = section_symbol (absolute_section);
933 fixp->fx_addsy->sy_used_in_reloc = 1;
938 dump_section_relocs (abfd, sec, stderr);
942 write_relocs (abfd, sec, xxx)
945 PTR xxx ATTRIBUTE_UNUSED;
947 segment_info_type *seginfo = seg_info (sec);
954 /* If seginfo is NULL, we did not create this section; don't do
959 fixup_segment (seginfo->fix_root, sec);
962 for (fixp = seginfo->fix_root; fixp; fixp = fixp->fx_next)
965 #ifndef RELOC_EXPANSION_POSSIBLE
966 /* Set up reloc information as well. */
967 relocs = (arelent **) xmalloc (n * sizeof (arelent *));
968 memset ((char *) relocs, 0, n * sizeof (arelent *));
971 for (fixp = seginfo->fix_root; fixp != (fixS *) NULL; fixp = fixp->fx_next)
974 bfd_reloc_status_type s;
983 /* If this is an undefined symbol which was equated to another
984 symbol, then use generate the reloc against the latter symbol
985 rather than the former. */
986 sym = fixp->fx_addsy;
987 while (symbol_equated_p (sym)
988 && (! S_IS_DEFINED (sym) || S_IS_COMMON (sym)))
992 /* We must avoid looping, as that can occur with a badly
994 n = symbol_get_value_expression (sym)->X_add_symbol;
997 fixp->fx_offset += symbol_get_value_expression (sym)->X_add_number;
1000 fixp->fx_addsy = sym;
1002 reloc = tc_gen_reloc (sec, fixp);
1010 /* This test is triggered inappropriately for the SH. */
1011 if (fixp->fx_where + fixp->fx_size
1012 > fixp->fx_frag->fr_fix + fixp->fx_frag->fr_offset)
1016 s = bfd_install_relocation (stdoutput, reloc,
1017 fixp->fx_frag->fr_literal,
1018 fixp->fx_frag->fr_address,
1024 case bfd_reloc_overflow:
1025 as_bad_where (fixp->fx_file, fixp->fx_line, _("relocation overflow"));
1027 case bfd_reloc_outofrange:
1028 as_bad_where (fixp->fx_file, fixp->fx_line, _("relocation out of range"));
1031 as_fatal (_("%s:%u: bad return from bfd_install_relocation: %x"),
1032 fixp->fx_file, fixp->fx_line, s);
1034 relocs[i++] = reloc;
1037 n = n * MAX_RELOC_EXPANSION;
1038 /* Set up reloc information as well. */
1039 relocs = (arelent **) xmalloc (n * sizeof (arelent *));
1042 for (fixp = seginfo->fix_root; fixp != (fixS *) NULL; fixp = fixp->fx_next)
1046 bfd_reloc_status_type s;
1056 /* If this is an undefined symbol which was equated to another
1057 symbol, then generate the reloc against the latter symbol
1058 rather than the former. */
1059 sym = fixp->fx_addsy;
1060 while (symbol_equated_p (sym)
1061 && (! S_IS_DEFINED (sym) || S_IS_COMMON (sym)))
1062 sym = symbol_get_value_expression (sym)->X_add_symbol;
1063 fixp->fx_addsy = sym;
1065 reloc = tc_gen_reloc (sec, fixp);
1067 for (j = 0; reloc[j]; j++)
1069 relocs[i++] = reloc[j];
1072 data = fixp->fx_frag->fr_literal + fixp->fx_where;
1073 if (fixp->fx_where + fixp->fx_size
1074 > fixp->fx_frag->fr_fix + fixp->fx_frag->fr_offset)
1075 as_bad_where (fixp->fx_file, fixp->fx_line,
1076 _("internal error: fixup not contained within frag"));
1077 for (j = 0; reloc[j]; j++)
1079 s = bfd_install_relocation (stdoutput, reloc[j],
1080 fixp->fx_frag->fr_literal,
1081 fixp->fx_frag->fr_address,
1087 case bfd_reloc_overflow:
1088 as_bad_where (fixp->fx_file, fixp->fx_line,
1089 _("relocation overflow"));
1092 as_fatal (_("%s:%u: bad return from bfd_install_relocation"),
1093 fixp->fx_file, fixp->fx_line);
1104 sympp = bfd_get_outsymbols (stdoutput);
1105 nsyms = bfd_get_symcount (stdoutput);
1106 for (i = 0; i < n; i++)
1107 if (((*relocs[i]->sym_ptr_ptr)->flags & BSF_SECTION_SYM) == 0)
1109 for (j = 0; j < nsyms; j++)
1110 if (sympp[j] == *relocs[i]->sym_ptr_ptr)
1119 bfd_set_reloc (stdoutput, sec, relocs, n);
1121 bfd_set_section_flags (abfd, sec,
1122 (bfd_get_section_flags (abfd, sec)
1123 & (flagword) ~SEC_RELOC));
1125 #ifdef SET_SECTION_RELOCS
1126 SET_SECTION_RELOCS (sec, relocs, n);
1134 fprintf (stderr, "relocs for sec %s\n", sec->name);
1135 for (i = 0; i < n; i++)
1138 s = *r->sym_ptr_ptr;
1139 fprintf (stderr, " reloc %2d @%08x off %4x : sym %-10s addend %x\n",
1140 i, r, r->address, s->name, r->addend);
1147 write_contents (abfd, sec, xxx)
1148 bfd *abfd ATTRIBUTE_UNUSED;
1150 PTR xxx ATTRIBUTE_UNUSED;
1152 segment_info_type *seginfo = seg_info (sec);
1153 unsigned long offset = 0;
1156 /* Write out the frags. */
1158 || !(bfd_get_section_flags (abfd, sec) & SEC_HAS_CONTENTS))
1161 for (f = seginfo->frchainP->frch_root;
1166 unsigned long fill_size;
1170 assert (f->fr_type == rs_fill);
1173 x = bfd_set_section_contents (stdoutput, sec,
1174 f->fr_literal, (file_ptr) offset,
1175 (bfd_size_type) f->fr_fix);
1178 bfd_perror (stdoutput->filename);
1179 as_perror (_("FATAL: Can't write %s"), stdoutput->filename);
1180 exit (EXIT_FAILURE);
1182 offset += f->fr_fix;
1184 fill_literal = f->fr_literal + f->fr_fix;
1185 fill_size = f->fr_var;
1186 count = f->fr_offset;
1187 assert (count >= 0);
1188 if (fill_size && count)
1191 if (fill_size > sizeof (buf))
1193 /* Do it the old way. Can this ever happen? */
1196 x = bfd_set_section_contents (stdoutput, sec,
1199 (bfd_size_type) fill_size);
1202 bfd_perror (stdoutput->filename);
1203 as_perror (_("FATAL: Can't write %s"),
1204 stdoutput->filename);
1205 exit (EXIT_FAILURE);
1207 offset += fill_size;
1212 /* Build a buffer full of fill objects and output it as
1213 often as necessary. This saves on the overhead of
1214 potentially lots of bfd_set_section_contents calls. */
1218 n_per_buf = sizeof (buf);
1219 memset (buf, *fill_literal, n_per_buf);
1224 n_per_buf = sizeof (buf) / fill_size;
1225 for (i = n_per_buf, bufp = buf; i; i--, bufp += fill_size)
1226 memcpy (bufp, fill_literal, fill_size);
1228 for (; count > 0; count -= n_per_buf)
1230 n_per_buf = n_per_buf > count ? count : n_per_buf;
1231 x = bfd_set_section_contents
1232 (stdoutput, sec, buf, (file_ptr) offset,
1233 (bfd_size_type) n_per_buf * fill_size);
1235 as_fatal (_("Cannot write to output file."));
1236 offset += n_per_buf * fill_size;
1244 #if defined(BFD_ASSEMBLER) || (!defined (BFD) && !defined(OBJ_AOUT))
1246 merge_data_into_text ()
1248 #if defined(BFD_ASSEMBLER) || defined(MANY_SEGMENTS)
1249 seg_info (text_section)->frchainP->frch_last->fr_next =
1250 seg_info (data_section)->frchainP->frch_root;
1251 seg_info (text_section)->frchainP->frch_last =
1252 seg_info (data_section)->frchainP->frch_last;
1253 seg_info (data_section)->frchainP = 0;
1257 text_last_frag->fr_next = data_frag_root;
1258 text_last_frag = data_last_frag;
1259 data_last_frag = NULL;
1260 data_frag_root = NULL;
1263 for (tmp = text_fix_root; tmp->fx_next; tmp = tmp->fx_next);;
1264 tmp->fx_next = data_fix_root;
1265 text_fix_tail = data_fix_tail;
1268 text_fix_root = data_fix_root;
1269 data_fix_root = NULL;
1272 #endif /* BFD_ASSEMBLER || (! BFD && ! OBJ_AOUT) */
1274 #if !defined (BFD_ASSEMBLER) && !defined (BFD)
1276 relax_and_size_all_segments ()
1280 relax_segment (text_frag_root, SEG_TEXT);
1281 relax_segment (data_frag_root, SEG_DATA);
1282 relax_segment (bss_frag_root, SEG_BSS);
1284 /* Now the addresses of frags are correct within the segment. */
1285 know (text_last_frag->fr_type == rs_fill && text_last_frag->fr_offset == 0);
1286 H_SET_TEXT_SIZE (&headers, text_last_frag->fr_address);
1287 text_last_frag->fr_address = H_GET_TEXT_SIZE (&headers);
1289 /* Join the 2 segments into 1 huge segment.
1290 To do this, re-compute every rn_address in the SEG_DATA frags.
1291 Then join the data frags after the text frags.
1293 Determine a_data [length of data segment]. */
1296 register relax_addressT slide;
1298 know ((text_last_frag->fr_type == rs_fill)
1299 && (text_last_frag->fr_offset == 0));
1301 H_SET_DATA_SIZE (&headers, data_last_frag->fr_address);
1302 data_last_frag->fr_address = H_GET_DATA_SIZE (&headers);
1303 slide = H_GET_TEXT_SIZE (&headers); /* & in file of the data segment. */
1305 #define RoundUp(N,S) (((N)+(S)-1)&-(S))
1306 /* For b.out: If the data section has a strict alignment
1307 requirement, its load address in the .o file will be
1308 rounded up from the size of the text section. These
1309 two values are *not* the same! Similarly for the bss
1311 slide = RoundUp (slide, 1 << section_alignment[SEG_DATA]);
1314 for (fragP = data_frag_root; fragP; fragP = fragP->fr_next)
1315 fragP->fr_address += slide;
1317 know (text_last_frag != 0);
1318 text_last_frag->fr_next = data_frag_root;
1322 H_SET_DATA_SIZE (&headers, 0);
1326 /* See above comments on b.out data section address. */
1329 if (data_last_frag == 0)
1330 bss_vma = H_GET_TEXT_SIZE (&headers);
1332 bss_vma = data_last_frag->fr_address;
1333 bss_vma = RoundUp (bss_vma, 1 << section_alignment[SEG_BSS]);
1334 bss_address_frag.fr_address = bss_vma;
1336 #else /* ! OBJ_BOUT */
1337 bss_address_frag.fr_address = (H_GET_TEXT_SIZE (&headers) +
1338 H_GET_DATA_SIZE (&headers));
1340 #endif /* ! OBJ_BOUT */
1342 /* Slide all the frags. */
1345 relax_addressT slide = bss_address_frag.fr_address;
1347 for (fragP = bss_frag_root; fragP; fragP = fragP->fr_next)
1348 fragP->fr_address += slide;
1352 H_SET_BSS_SIZE (&headers,
1353 bss_last_frag->fr_address - bss_frag_root->fr_address);
1355 H_SET_BSS_SIZE (&headers, 0);
1357 #endif /* ! BFD_ASSEMBLER && ! BFD */
1359 #if defined (BFD_ASSEMBLER) || !defined (BFD)
1361 #ifdef BFD_ASSEMBLER
1369 extern PTR bfd_alloc PARAMS ((bfd *, size_t));
1371 /* Count symbols. We can't rely on a count made by the loop in
1372 write_object_file, because *_frob_file may add a new symbol or
1375 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
1382 asympp = (asymbol **) bfd_alloc (stdoutput,
1383 nsyms * sizeof (asymbol *));
1384 symp = symbol_rootP;
1385 for (i = 0; i < nsyms; i++, symp = symbol_next (symp))
1387 asympp[i] = symbol_get_bfdsym (symp);
1388 symbol_mark_written (symp);
1393 result = bfd_set_symtab (stdoutput, asympp, nsyms);
1394 assert (result == true);
1395 symbol_table_frozen = 1;
1399 #if defined (BFD_ASSEMBLER) && defined (OBJ_COFF) && defined (TE_GO32)
1401 set_segment_vma (abfd, sec, xxx)
1404 PTR xxx ATTRIBUTE_UNUSED;
1406 static bfd_vma addr = 0;
1408 bfd_set_section_vma (abfd, sec, addr);
1409 addr += bfd_section_size (abfd, sec);
1411 #endif /* BFD_ASSEMBLER && OBJ_COFF && !TE_PE */
1413 /* Finish the subsegments. After every sub-segment, we fake an
1414 ".align ...". This conforms to BSD4.2 brane-damage. We then fake
1415 ".fill 0" because that is the kind of frag that requires least
1416 thought. ".align" frags like to have a following frag since that
1417 makes calculating their intended length trivial. */
1419 #ifndef SUB_SEGMENT_ALIGN
1420 #ifdef BFD_ASSEMBLER
1421 #define SUB_SEGMENT_ALIGN(SEG) (0)
1423 #define SUB_SEGMENT_ALIGN(SEG) (2)
1430 struct frchain *frchainP;
1432 for (frchainP = frchain_root; frchainP; frchainP = frchainP->frch_next)
1436 subseg_set (frchainP->frch_seg, frchainP->frch_subseg);
1438 /* This now gets called even if we had errors. In that case,
1439 any alignment is meaningless, and, moreover, will look weird
1440 if we are generating a listing. */
1441 alignment = had_errors () ? 0 : SUB_SEGMENT_ALIGN (now_seg);
1443 /* The last subsegment gets an aligment corresponding to the
1444 alignment of the section. This allows proper nop-filling
1445 at the end of code-bearing sections. */
1446 if (!frchainP->frch_next || frchainP->frch_next->frch_seg != now_seg)
1447 alignment = get_recorded_alignment (now_seg);
1449 if (subseg_text_p (now_seg))
1450 frag_align_code (alignment, 0);
1452 frag_align (alignment, 0, 0);
1454 /* frag_align will have left a new frag.
1455 Use this last frag for an empty ".fill".
1457 For this segment ...
1458 Create a last frag. Do not leave a "being filled in frag". */
1459 frag_wane (frag_now);
1460 frag_now->fr_fix = 0;
1461 know (frag_now->fr_next == NULL);
1465 /* Write the object file. */
1468 write_object_file ()
1470 #if ! defined (BFD_ASSEMBLER) || ! defined (WORKING_DOT_WORD)
1471 fragS *fragP; /* Track along all frags. */
1474 /* Do we really want to write it? */
1476 int n_warns, n_errs;
1477 n_warns = had_warnings ();
1478 n_errs = had_errors ();
1479 /* The -Z flag indicates that an object file should be generated,
1480 regardless of warnings and errors. */
1481 if (flag_always_generate_output)
1483 if (n_warns || n_errs)
1484 as_warn (_("%d error%s, %d warning%s, generating bad object file.\n"),
1485 n_errs, n_errs == 1 ? "" : "s",
1486 n_warns, n_warns == 1 ? "" : "s");
1491 as_fatal (_("%d error%s, %d warning%s, no object file generated.\n"),
1492 n_errs, n_errs == 1 ? "" : "s",
1493 n_warns, n_warns == 1 ? "" : "s");
1498 /* Under VMS we try to be compatible with VAX-11 "C". Thus, we call
1499 a routine to check for the definition of the procedure "_main",
1500 and if so -- fix it up so that it can be program entry point. */
1501 vms_check_for_main ();
1502 #endif /* OBJ_VMS */
1504 /* From now on, we don't care about sub-segments. Build one frag chain
1505 for each segment. Linked thru fr_next. */
1507 #ifdef BFD_ASSEMBLER
1508 /* Remove the sections created by gas for its own purposes. */
1510 asection **seclist, *sec;
1513 seclist = &stdoutput->sections;
1514 while (seclist && *seclist)
1517 while (sec == reg_section || sec == expr_section)
1521 stdoutput->section_count--;
1526 seclist = &(*seclist)->next;
1529 bfd_map_over_sections (stdoutput, renumber_sections, &i);
1532 bfd_map_over_sections (stdoutput, chain_frchains_together, (char *) 0);
1534 remove_subsegs (frchain_root, SEG_TEXT, &text_frag_root, &text_last_frag);
1535 remove_subsegs (data0_frchainP, SEG_DATA, &data_frag_root, &data_last_frag);
1536 remove_subsegs (bss0_frchainP, SEG_BSS, &bss_frag_root, &bss_last_frag);
1539 /* We have two segments. If user gave -R flag, then we must put the
1540 data frags into the text segment. Do this before relaxing so
1541 we know to take advantage of -R and make shorter addresses. */
1542 #if !defined (OBJ_AOUT) || defined (BFD_ASSEMBLER)
1543 if (flag_readonly_data_in_text)
1545 merge_data_into_text ();
1549 #ifdef BFD_ASSEMBLER
1554 #ifndef WORKING_DOT_WORD
1555 /* We need to reset the markers in the broken word list and
1556 associated frags between calls to relax_segment (via
1557 relax_seg). Since the broken word list is global, we do it
1558 once per round, rather than locally in relax_segment for each
1560 struct broken_word *brokp;
1562 for (brokp = broken_words;
1563 brokp != (struct broken_word *) NULL;
1564 brokp = brokp->next_broken_word)
1568 if (brokp->dispfrag != (fragS *) NULL
1569 && brokp->dispfrag->fr_type == rs_broken_word)
1570 brokp->dispfrag->fr_subtype = 0;
1575 bfd_map_over_sections (stdoutput, relax_seg, &changed);
1579 bfd_map_over_sections (stdoutput, size_seg, (char *) 0);
1581 relax_and_size_all_segments ();
1582 #endif /* BFD_ASSEMBLER */
1584 /* Relaxation has completed. Freeze all syms. */
1587 #if defined (BFD_ASSEMBLER) && defined (OBJ_COFF) && defined (TE_GO32)
1588 /* Now that the segments have their final sizes, run through the
1589 sections and set their vma and lma. !BFD gas sets them, and BFD gas
1590 should too. Currently, only DJGPP uses this code, but other
1591 COFF targets may need to execute this too. */
1592 bfd_map_over_sections (stdoutput, set_segment_vma, (char *) 0);
1595 #ifndef BFD_ASSEMBLER
1596 /* Crawl the symbol chain.
1598 For each symbol whose value depends on a frag, take the address of
1599 that frag and subsume it into the value of the symbol.
1600 After this, there is just one way to lookup a symbol value.
1601 Values are left in their final state for object file emission.
1602 We adjust the values of 'L' local symbols, even if we do
1603 not intend to emit them to the object file, because their values
1604 are needed for fix-ups.
1606 Unless we saw a -L flag, remove all symbols that begin with 'L'
1607 from the symbol chain. (They are still pointed to by the fixes.)
1609 Count the remaining symbols.
1610 Assign a symbol number to each symbol.
1611 Count the number of string-table chars we will emit.
1612 Put this info into the headers as appropriate. */
1613 know (zero_address_frag.fr_address == 0);
1614 string_byte_count = sizeof (string_byte_count);
1616 obj_crawl_symbol_chain (&headers);
1618 if (string_byte_count == sizeof (string_byte_count))
1619 string_byte_count = 0;
1621 H_SET_STRING_SIZE (&headers, string_byte_count);
1623 /* Addresses of frags now reflect addresses we use in the object file.
1624 Symbol values are correct.
1625 Scan the frags, converting any ".org"s and ".align"s to ".fill"s.
1626 Also converting any machine-dependent frags using md_convert_frag(); */
1627 subseg_change (SEG_TEXT, 0);
1629 for (fragP = text_frag_root; fragP; fragP = fragP->fr_next)
1631 /* At this point we have linked all the frags into a single
1632 chain. However, cvt_frag_to_fill may call md_convert_frag
1633 which may call fix_new. We need to ensure that fix_new adds
1634 the fixup to the right section. */
1635 if (fragP == data_frag_root)
1636 subseg_change (SEG_DATA, 0);
1638 cvt_frag_to_fill (&headers, SEG_TEXT, fragP);
1640 /* Some assert macros don't work with # directives mixed in. */
1642 if (!(fragP->fr_next == NULL
1644 || fragP->fr_next == data_frag_root
1646 || ((fragP->fr_next->fr_address - fragP->fr_address)
1647 == (fragP->fr_fix + fragP->fr_offset * fragP->fr_var))))
1651 #endif /* ! BFD_ASSEMBLER */
1653 #ifndef WORKING_DOT_WORD
1655 struct broken_word *lie;
1656 struct broken_word **prevP;
1658 prevP = &broken_words;
1659 for (lie = broken_words; lie; lie = lie->next_broken_word)
1664 subseg_change (lie->seg, lie->subseg);
1665 exp.X_op = O_subtract;
1666 exp.X_add_symbol = lie->add;
1667 exp.X_op_symbol = lie->sub;
1668 exp.X_add_number = lie->addnum;
1669 #ifdef BFD_ASSEMBLER
1670 #ifdef TC_CONS_FIX_NEW
1671 TC_CONS_FIX_NEW (lie->frag,
1672 lie->word_goes_here - lie->frag->fr_literal,
1675 fix_new_exp (lie->frag,
1676 lie->word_goes_here - lie->frag->fr_literal,
1677 2, &exp, 0, BFD_RELOC_16);
1680 #if defined(TC_SPARC) || defined(TC_A29K) || defined(NEED_FX_R_TYPE)
1681 fix_new_exp (lie->frag,
1682 lie->word_goes_here - lie->frag->fr_literal,
1683 2, &exp, 0, NO_RELOC);
1686 fix_new_ns32k_exp (lie->frag,
1687 lie->word_goes_here - lie->frag->fr_literal,
1688 2, &exp, 0, 0, 2, 0, 0);
1690 fix_new_exp (lie->frag,
1691 lie->word_goes_here - lie->frag->fr_literal,
1693 #endif /* TC_NS32K */
1694 #endif /* TC_SPARC|TC_A29K|NEED_FX_R_TYPE */
1695 #endif /* BFD_ASSEMBLER */
1696 *prevP = lie->next_broken_word;
1699 prevP = &(lie->next_broken_word);
1701 for (lie = broken_words; lie;)
1703 struct broken_word *untruth;
1705 addressT table_addr;
1706 addressT from_addr, to_addr;
1709 subseg_change (lie->seg, lie->subseg);
1710 fragP = lie->dispfrag;
1712 /* Find out how many broken_words go here. */
1715 untruth && untruth->dispfrag == fragP;
1716 untruth = untruth->next_broken_word)
1717 if (untruth->added == 1)
1720 table_ptr = lie->dispfrag->fr_opcode;
1721 table_addr = (lie->dispfrag->fr_address
1722 + (table_ptr - lie->dispfrag->fr_literal));
1723 /* Create the jump around the long jumps. This is a short
1724 jump from table_ptr+0 to table_ptr+n*long_jump_size. */
1725 from_addr = table_addr;
1726 to_addr = table_addr + md_short_jump_size + n * md_long_jump_size;
1727 md_create_short_jump (table_ptr, from_addr, to_addr, lie->dispfrag,
1729 table_ptr += md_short_jump_size;
1730 table_addr += md_short_jump_size;
1733 lie && lie->dispfrag == fragP;
1734 m++, lie = lie->next_broken_word)
1736 if (lie->added == 2)
1738 /* Patch the jump table. */
1739 /* This is the offset from ??? to table_ptr+0. */
1740 to_addr = table_addr - S_GET_VALUE (lie->sub);
1741 #ifdef BFD_ASSEMBLER
1742 to_addr -= symbol_get_frag (lie->sub)->fr_address;
1744 #ifdef TC_CHECK_ADJUSTED_BROKEN_DOT_WORD
1745 TC_CHECK_ADJUSTED_BROKEN_DOT_WORD (to_addr, lie);
1747 md_number_to_chars (lie->word_goes_here, to_addr, 2);
1748 for (untruth = lie->next_broken_word;
1749 untruth && untruth->dispfrag == fragP;
1750 untruth = untruth->next_broken_word)
1752 if (untruth->use_jump == lie)
1753 md_number_to_chars (untruth->word_goes_here, to_addr, 2);
1756 /* Install the long jump. */
1757 /* This is a long jump from table_ptr+0 to the final target. */
1758 from_addr = table_addr;
1759 to_addr = S_GET_VALUE (lie->add) + lie->addnum;
1760 #ifdef BFD_ASSEMBLER
1761 to_addr += symbol_get_frag (lie->add)->fr_address;
1763 md_create_long_jump (table_ptr, from_addr, to_addr, lie->dispfrag,
1765 table_ptr += md_long_jump_size;
1766 table_addr += md_long_jump_size;
1770 #endif /* not WORKING_DOT_WORD */
1772 #ifndef BFD_ASSEMBLER
1775 char *the_object_file;
1776 long object_file_size;
1777 /* Scan every FixS performing fixups. We had to wait until now to
1778 do this because md_convert_frag() may have made some fixSs. */
1781 subseg_change (SEG_TEXT, 0);
1782 trsize = md_reloc_size * fixup_segment (text_fix_root, SEG_TEXT);
1783 subseg_change (SEG_DATA, 0);
1784 drsize = md_reloc_size * fixup_segment (data_fix_root, SEG_DATA);
1785 H_SET_RELOCATION_SIZE (&headers, trsize, drsize);
1787 /* FIXME: Move this stuff into the pre-write-hook. */
1788 H_SET_MAGIC_NUMBER (&headers, magic_number_for_object_file);
1789 H_SET_ENTRY_POINT (&headers, 0);
1791 obj_pre_write_hook (&headers); /* Extra coff stuff. */
1793 object_file_size = H_GET_FILE_SIZE (&headers);
1794 next_object_file_charP = the_object_file = xmalloc (object_file_size);
1796 output_file_create (out_file_name);
1798 obj_header_append (&next_object_file_charP, &headers);
1800 know ((next_object_file_charP - the_object_file)
1801 == H_GET_HEADER_SIZE (&headers));
1804 for (fragP = text_frag_root; fragP; fragP = fragP->fr_next)
1806 register long count;
1807 register char *fill_literal;
1808 register long fill_size;
1811 know (fragP->fr_type == rs_fill);
1812 append (&next_object_file_charP, fragP->fr_literal,
1813 (unsigned long) fragP->fr_fix);
1814 fill_literal = fragP->fr_literal + fragP->fr_fix;
1815 fill_size = fragP->fr_var;
1816 know (fragP->fr_offset >= 0);
1818 for (count = fragP->fr_offset; count; count--)
1819 append (&next_object_file_charP, fill_literal,
1820 (unsigned long) fill_size);
1823 know ((next_object_file_charP - the_object_file)
1824 == (H_GET_HEADER_SIZE (&headers)
1825 + H_GET_TEXT_SIZE (&headers)
1826 + H_GET_DATA_SIZE (&headers)));
1828 /* Emit relocations. */
1829 obj_emit_relocations (&next_object_file_charP, text_fix_root,
1830 (relax_addressT) 0);
1831 know ((next_object_file_charP - the_object_file)
1832 == (H_GET_HEADER_SIZE (&headers)
1833 + H_GET_TEXT_SIZE (&headers)
1834 + H_GET_DATA_SIZE (&headers)
1835 + H_GET_TEXT_RELOCATION_SIZE (&headers)));
1837 /* Make addresses in data relocation directives relative to beginning of
1838 first data fragment, not end of last text fragment: alignment of the
1839 start of the data segment may place a gap between the segments. */
1840 obj_emit_relocations (&next_object_file_charP, data_fix_root,
1841 data0_frchainP->frch_root->fr_address);
1843 obj_emit_relocations (&next_object_file_charP, data_fix_root,
1844 text_last_frag->fr_address);
1845 #endif /* TC_I960 */
1847 know ((next_object_file_charP - the_object_file)
1848 == (H_GET_HEADER_SIZE (&headers)
1849 + H_GET_TEXT_SIZE (&headers)
1850 + H_GET_DATA_SIZE (&headers)
1851 + H_GET_TEXT_RELOCATION_SIZE (&headers)
1852 + H_GET_DATA_RELOCATION_SIZE (&headers)));
1854 /* Emit line number entries. */
1855 OBJ_EMIT_LINENO (&next_object_file_charP, lineno_rootP, the_object_file);
1856 know ((next_object_file_charP - the_object_file)
1857 == (H_GET_HEADER_SIZE (&headers)
1858 + H_GET_TEXT_SIZE (&headers)
1859 + H_GET_DATA_SIZE (&headers)
1860 + H_GET_TEXT_RELOCATION_SIZE (&headers)
1861 + H_GET_DATA_RELOCATION_SIZE (&headers)
1862 + H_GET_LINENO_SIZE (&headers)));
1865 obj_emit_symbols (&next_object_file_charP, symbol_rootP);
1866 know ((next_object_file_charP - the_object_file)
1867 == (H_GET_HEADER_SIZE (&headers)
1868 + H_GET_TEXT_SIZE (&headers)
1869 + H_GET_DATA_SIZE (&headers)
1870 + H_GET_TEXT_RELOCATION_SIZE (&headers)
1871 + H_GET_DATA_RELOCATION_SIZE (&headers)
1872 + H_GET_LINENO_SIZE (&headers)
1873 + H_GET_SYMBOL_TABLE_SIZE (&headers)));
1876 if (string_byte_count > 0)
1877 obj_emit_strings (&next_object_file_charP);
1880 bfd_seek (stdoutput, 0, 0);
1881 bfd_write (the_object_file, 1, object_file_size, stdoutput);
1884 /* Write the data to the file. */
1885 output_file_append (the_object_file, object_file_size, out_file_name);
1886 free (the_object_file);
1890 /* Now do the VMS-dependent part of writing the object file. */
1891 vms_write_object_file (H_GET_TEXT_SIZE (&headers),
1892 H_GET_DATA_SIZE (&headers),
1893 H_GET_BSS_SIZE (&headers),
1894 text_frag_root, data_frag_root);
1895 #endif /* OBJ_VMS */
1896 #else /* BFD_ASSEMBLER */
1898 /* Resolve symbol values. This needs to be done before processing
1904 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
1905 resolve_symbol_value (symp, finalize_syms);
1907 resolve_local_symbol_values ();
1911 #ifdef tc_frob_file_before_adjust
1912 tc_frob_file_before_adjust ();
1914 #ifdef obj_frob_file_before_adjust
1915 obj_frob_file_before_adjust ();
1918 bfd_map_over_sections (stdoutput, adjust_reloc_syms, (char *) 0);
1920 /* Set up symbol table, and write it out. */
1925 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
1930 if (symbol_mri_common_p (symp))
1932 if (S_IS_EXTERNAL (symp))
1933 as_bad (_("%s: global symbols not supported in common sections"),
1935 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
1939 name = S_GET_NAME (symp);
1943 decode_local_label_name ((char *) S_GET_NAME (symp));
1944 /* They only differ if `name' is a fb or dollar local
1946 if (name2 != name && ! S_IS_DEFINED (symp))
1947 as_bad (_("local label %s is not defined"), name2);
1950 /* Do it again, because adjust_reloc_syms might introduce
1951 more symbols. They'll probably only be section symbols,
1952 but they'll still need to have the values computed. */
1953 resolve_symbol_value (symp, finalize_syms);
1955 /* Skip symbols which were equated to undefined or common
1957 if (symbol_equated_p (symp)
1958 && (! S_IS_DEFINED (symp) || S_IS_COMMON (symp)))
1960 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
1964 /* So far, common symbols have been treated like undefined symbols.
1965 Put them in the common section now. */
1966 if (S_IS_DEFINED (symp) == 0
1967 && S_GET_VALUE (symp) != 0)
1968 S_SET_SEGMENT (symp, bfd_com_section_ptr);
1970 printf ("symbol `%s'\n\t@%x: value=%d flags=%x seg=%s\n",
1971 S_GET_NAME (symp), symp,
1973 symbol_get_bfdsym (symp)->flags,
1974 segment_name (S_GET_SEGMENT (symp)));
1977 #ifdef obj_frob_symbol
1978 obj_frob_symbol (symp, punt);
1980 #ifdef tc_frob_symbol
1981 if (! punt || symbol_used_in_reloc_p (symp))
1982 tc_frob_symbol (symp, punt);
1985 /* If we don't want to keep this symbol, splice it out of
1986 the chain now. If EMIT_SECTION_SYMBOLS is 0, we never
1987 want section symbols. Otherwise, we skip local symbols
1988 and symbols that the frob_symbol macros told us to punt,
1989 but we keep such symbols if they are used in relocs. */
1990 if ((! EMIT_SECTION_SYMBOLS
1991 && symbol_section_p (symp))
1992 /* Note that S_IS_EXTERN and S_IS_LOCAL are not always
1993 opposites. Sometimes the former checks flags and the
1994 latter examines the name... */
1995 || (!S_IS_EXTERN (symp)
1996 && (S_IS_LOCAL (symp) || punt)
1997 && ! symbol_used_in_reloc_p (symp)))
1999 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
2001 /* After symbol_remove, symbol_next(symp) still returns
2002 the one that came after it in the chain. So we don't
2003 need to do any extra cleanup work here. */
2007 /* Make sure we really got a value for the symbol. */
2008 if (! symbol_resolved_p (symp))
2010 as_bad (_("can't resolve value for symbol \"%s\""),
2012 symbol_mark_resolved (symp);
2015 /* Set the value into the BFD symbol. Up til now the value
2016 has only been kept in the gas symbolS struct. */
2017 symbol_get_bfdsym (symp)->value = S_GET_VALUE (symp);
2023 /* Now do any format-specific adjustments to the symbol table, such
2024 as adding file symbols. */
2025 #ifdef tc_adjust_symtab
2026 tc_adjust_symtab ();
2028 #ifdef obj_adjust_symtab
2029 obj_adjust_symtab ();
2032 /* Now that all the sizes are known, and contents correct, we can
2033 start writing to the file. */
2036 /* If *_frob_file changes the symbol value at this point, it is
2037 responsible for moving the changed value into symp->bsym->value
2038 as well. Hopefully all symbol value changing can be done in
2043 #ifdef obj_frob_file
2047 bfd_map_over_sections (stdoutput, write_relocs, (char *) 0);
2049 #ifdef tc_frob_file_after_relocs
2050 tc_frob_file_after_relocs ();
2052 #ifdef obj_frob_file_after_relocs
2053 obj_frob_file_after_relocs ();
2056 bfd_map_over_sections (stdoutput, write_contents, (char *) 0);
2057 #endif /* BFD_ASSEMBLER */
2061 #ifdef TC_GENERIC_RELAX_TABLE
2063 /* Relax a fragment by scanning TC_GENERIC_RELAX_TABLE. */
2066 relax_frag (segment, fragP, stretch)
2071 const relax_typeS *this_type;
2072 const relax_typeS *start_type;
2073 relax_substateT next_state;
2074 relax_substateT this_state;
2080 const relax_typeS *table;
2082 target = fragP->fr_offset;
2083 address = fragP->fr_address;
2084 table = TC_GENERIC_RELAX_TABLE;
2085 this_state = fragP->fr_subtype;
2086 start_type = this_type = table + this_state;
2087 symbolP = fragP->fr_symbol;
2093 sym_frag = symbol_get_frag (symbolP);
2095 #ifndef DIFF_EXPR_OK
2096 #if !defined (MANY_SEGMENTS) && !defined (BFD_ASSEMBLER)
2097 know ((S_GET_SEGMENT (symbolP) == SEG_ABSOLUTE)
2098 || (S_GET_SEGMENT (symbolP) == SEG_DATA)
2099 || (S_GET_SEGMENT (symbolP) == SEG_BSS)
2100 || (S_GET_SEGMENT (symbolP) == SEG_TEXT));
2102 know (sym_frag != NULL);
2104 know (!(S_GET_SEGMENT (symbolP) == absolute_section)
2105 || sym_frag == &zero_address_frag);
2106 target += S_GET_VALUE (symbolP) + sym_frag->fr_address;
2108 /* If frag has yet to be reached on this pass,
2109 assume it will move by STRETCH just as we did.
2110 If this is not so, it will be because some frag
2111 between grows, and that will force another pass. */
2114 && sym_frag->relax_marker != fragP->relax_marker
2115 && S_GET_SEGMENT (symbolP) == segment)
2121 aim = target - address - fragP->fr_fix;
2122 #ifdef TC_PCREL_ADJUST
2123 /* Currently only the ns32k family needs this. */
2124 aim += TC_PCREL_ADJUST (fragP);
2126 /* This machine doesn't want to use pcrel_adjust.
2127 In that case, pcrel_adjust should be zero. */
2129 assert (fragP->fr_targ.ns32k.pcrel_adjust == 0);
2132 #ifdef md_prepare_relax_scan /* formerly called M68K_AIM_KLUDGE */
2133 md_prepare_relax_scan (fragP, address, aim, this_state, this_type);
2138 /* Look backwards. */
2139 for (next_state = this_type->rlx_more; next_state;)
2140 if (aim >= this_type->rlx_backward)
2144 /* Grow to next state. */
2145 this_state = next_state;
2146 this_type = table + this_state;
2147 next_state = this_type->rlx_more;
2152 /* Look forwards. */
2153 for (next_state = this_type->rlx_more; next_state;)
2154 if (aim <= this_type->rlx_forward)
2158 /* Grow to next state. */
2159 this_state = next_state;
2160 this_type = table + this_state;
2161 next_state = this_type->rlx_more;
2165 growth = this_type->rlx_length - start_type->rlx_length;
2167 fragP->fr_subtype = this_state;
2171 #endif /* defined (TC_GENERIC_RELAX_TABLE) */
2173 /* Relax_align. Advance location counter to next address that has 'alignment'
2174 lowest order bits all 0s, return size of adjustment made. */
2175 static relax_addressT
2176 relax_align (address, alignment)
2177 register relax_addressT address; /* Address now. */
2178 register int alignment; /* Alignment (binary). */
2180 relax_addressT mask;
2181 relax_addressT new_address;
2183 mask = ~((~0) << alignment);
2184 new_address = (address + mask) & (~mask);
2185 #ifdef LINKER_RELAXING_SHRINKS_ONLY
2187 /* We must provide lots of padding, so the linker can discard it
2188 when needed. The linker will not add extra space, ever. */
2189 new_address += (1 << alignment);
2191 return (new_address - address);
2194 /* Now we have a segment, not a crowd of sub-segments, we can make
2199 After this, all frags in this segment have addresses that are correct
2200 within the segment. Since segments live in different file addresses,
2201 these frag addresses may not be the same as final object-file
2205 relax_segment (segment_frag_root, segment)
2206 struct frag *segment_frag_root;
2209 register struct frag *fragP;
2210 register relax_addressT address;
2213 #if !defined (MANY_SEGMENTS) && !defined (BFD_ASSEMBLER)
2214 know (segment == SEG_DATA || segment == SEG_TEXT || segment == SEG_BSS);
2216 /* In case md_estimate_size_before_relax() wants to make fixSs. */
2217 subseg_change (segment, 0);
2219 /* For each frag in segment: count and store (a 1st guess of)
2222 for (fragP = segment_frag_root; fragP; fragP = fragP->fr_next)
2224 fragP->relax_marker = 0;
2225 fragP->fr_address = address;
2226 address += fragP->fr_fix;
2228 switch (fragP->fr_type)
2231 address += fragP->fr_offset * fragP->fr_var;
2238 addressT offset = relax_align (address, (int) fragP->fr_offset);
2240 if (fragP->fr_subtype != 0 && offset > fragP->fr_subtype)
2243 if (offset % fragP->fr_var != 0)
2245 as_bad (_("alignment padding (%lu bytes) not a multiple of %ld"),
2246 (unsigned long) offset, (long) fragP->fr_var);
2247 offset -= (offset % fragP->fr_var);
2256 /* Assume .org is nugatory. It will grow with 1st relax. */
2259 case rs_machine_dependent:
2260 address += md_estimate_size_before_relax (fragP, segment);
2263 #ifndef WORKING_DOT_WORD
2264 /* Broken words don't concern us yet. */
2265 case rs_broken_word:
2270 /* Initial guess is always 1; doing otherwise can result in
2271 stable solutions that are larger than the minimum. */
2272 address += fragP->fr_offset = 1;
2276 address += eh_frame_estimate_size_before_relax (fragP);
2280 address += dwarf2dbg_estimate_size_before_relax (fragP);
2284 BAD_CASE (fragP->fr_type);
2291 long stretch; /* May be any size, 0 or negative. */
2292 /* Cumulative number of addresses we have relaxed this pass.
2293 We may have relaxed more than one address. */
2294 int stretched; /* Have we stretched on this pass? */
2295 /* This is 'cuz stretch may be zero, when, in fact some piece of code
2296 grew, and another shrank. If a branch instruction doesn't fit anymore,
2297 we could be scrod. */
2304 for (fragP = segment_frag_root; fragP; fragP = fragP->fr_next)
2307 addressT was_address;
2311 fragP->relax_marker ^= 1;
2312 was_address = fragP->fr_address;
2313 address = fragP->fr_address += stretch;
2314 symbolP = fragP->fr_symbol;
2315 offset = fragP->fr_offset;
2317 switch (fragP->fr_type)
2319 case rs_fill: /* .fill never relaxes. */
2323 #ifndef WORKING_DOT_WORD
2324 /* JF: This is RMS's idea. I do *NOT* want to be blamed
2325 for it I do not want to write it. I do not want to have
2326 anything to do with it. This is not the proper way to
2327 implement this misfeature. */
2328 case rs_broken_word:
2330 struct broken_word *lie;
2331 struct broken_word *untruth;
2333 /* Yes this is ugly (storing the broken_word pointer
2334 in the symbol slot). Still, this whole chunk of
2335 code is ugly, and I don't feel like doing anything
2336 about it. Think of it as stubbornness in action. */
2338 for (lie = (struct broken_word *) (fragP->fr_symbol);
2339 lie && lie->dispfrag == fragP;
2340 lie = lie->next_broken_word)
2346 offset = (symbol_get_frag (lie->add)->fr_address
2347 + S_GET_VALUE (lie->add)
2349 - (symbol_get_frag (lie->sub)->fr_address
2350 + S_GET_VALUE (lie->sub)));
2351 if (offset <= -32768 || offset >= 32767)
2353 if (flag_warn_displacement)
2356 sprint_value (buf, (addressT) lie->addnum);
2357 as_warn (_(".word %s-%s+%s didn't fit"),
2358 S_GET_NAME (lie->add),
2359 S_GET_NAME (lie->sub),
2363 if (fragP->fr_subtype == 0)
2365 fragP->fr_subtype++;
2366 growth += md_short_jump_size;
2368 for (untruth = lie->next_broken_word;
2369 untruth && untruth->dispfrag == lie->dispfrag;
2370 untruth = untruth->next_broken_word)
2371 if ((symbol_get_frag (untruth->add)
2372 == symbol_get_frag (lie->add))
2373 && (S_GET_VALUE (untruth->add)
2374 == S_GET_VALUE (lie->add)))
2377 untruth->use_jump = lie;
2379 growth += md_long_jump_size;
2384 } /* case rs_broken_word */
2390 addressT oldoff, newoff;
2392 oldoff = relax_align (was_address + fragP->fr_fix,
2394 newoff = relax_align (address + fragP->fr_fix,
2397 if (fragP->fr_subtype != 0)
2399 if (oldoff > fragP->fr_subtype)
2401 if (newoff > fragP->fr_subtype)
2405 growth = newoff - oldoff;
2411 addressT target = offset;
2416 #if !defined (MANY_SEGMENTS) && !defined (BFD_ASSEMBLER)
2417 know ((S_GET_SEGMENT (symbolP) == SEG_ABSOLUTE)
2418 || (S_GET_SEGMENT (symbolP) == SEG_DATA)
2419 || (S_GET_SEGMENT (symbolP) == SEG_TEXT)
2420 || S_GET_SEGMENT (symbolP) == SEG_BSS);
2421 know (symbolP->sy_frag);
2422 know (!(S_GET_SEGMENT (symbolP) == SEG_ABSOLUTE)
2423 || (symbolP->sy_frag == &zero_address_frag));
2425 target += (S_GET_VALUE (symbolP)
2426 + symbol_get_frag (symbolP)->fr_address);
2427 } /* if we have a symbol */
2429 know (fragP->fr_next);
2430 after = fragP->fr_next->fr_address;
2431 growth = target - after;
2434 /* Growth may be negative, but variable part of frag
2435 cannot have fewer than 0 chars. That is, we can't
2437 as_bad_where (fragP->fr_file, fragP->fr_line,
2438 _("attempt to .org backwards ignored"));
2440 /* We've issued an error message. Change the
2441 frag to avoid cascading errors. */
2442 fragP->fr_type = rs_align;
2443 fragP->fr_subtype = 0;
2444 fragP->fr_offset = 0;
2445 fragP->fr_fix = after - address;
2449 /* This is an absolute growth factor */
2457 growth = S_GET_VALUE (symbolP);
2458 if (symbol_get_frag (symbolP) != &zero_address_frag
2459 || S_IS_COMMON (symbolP)
2460 || ! S_IS_DEFINED (symbolP))
2461 as_bad_where (fragP->fr_file, fragP->fr_line,
2462 _(".space specifies non-absolute value"));
2463 fragP->fr_symbol = 0;
2466 as_warn (_(".space or .fill with negative value, ignored"));
2474 case rs_machine_dependent:
2475 #ifdef md_relax_frag
2476 growth = md_relax_frag (segment, fragP, stretch);
2478 #ifdef TC_GENERIC_RELAX_TABLE
2479 /* The default way to relax a frag is to look through
2480 TC_GENERIC_RELAX_TABLE. */
2481 growth = relax_frag (segment, fragP, stretch);
2482 #endif /* TC_GENERIC_RELAX_TABLE */
2491 value = resolve_symbol_value (fragP->fr_symbol, 0);
2492 size = sizeof_leb128 (value, fragP->fr_subtype);
2493 growth = size - fragP->fr_offset;
2494 fragP->fr_offset = size;
2499 growth = eh_frame_relax_frag (fragP);
2503 growth = dwarf2dbg_relax_frag (fragP);
2507 BAD_CASE (fragP->fr_type);
2515 } /* For each frag in the segment. */
2517 while (stretched); /* Until nothing further to relax. */
2521 for (fragP = segment_frag_root; fragP; fragP = fragP->fr_next)
2522 if (fragP->last_fr_address != fragP->fr_address)
2524 fragP->last_fr_address = fragP->fr_address;
2530 #if defined (BFD_ASSEMBLER) || (!defined (BFD) && !defined (OBJ_VMS))
2532 #ifndef TC_RELOC_RTSYM_LOC_FIXUP
2533 #define TC_RELOC_RTSYM_LOC_FIXUP(X) (1)
2538 Go through all the fixS's in a segment and see which ones can be
2539 handled now. (These consist of fixS where we have since discovered
2540 the value of a symbol, or the address of the frag involved.)
2541 For each one, call md_apply_fix to put the fix into the frag data.
2543 Result is a count of how many relocation structs will be needed to
2544 handle the remaining fixS's that we couldn't completely handle here.
2545 These will be output later by emit_relocations(). */
2548 fixup_segment (fixP, this_segment_type)
2549 register fixS *fixP;
2550 segT this_segment_type; /* N_TYPE bits for segment. */
2552 long seg_reloc_count = 0;
2553 symbolS *add_symbolP;
2554 symbolS *sub_symbolP;
2561 segT add_symbol_segment = absolute_section;
2563 /* If the linker is doing the relaxing, we must not do any fixups.
2565 Well, strictly speaking that's not true -- we could do any that are
2566 PC-relative and don't cross regions that could change size. And for the
2567 i960 (the only machine for which we've got a relaxing linker right now),
2568 we might be able to turn callx/callj into bal anyways in cases where we
2569 know the maximum displacement. */
2570 if (linkrelax && TC_LINKRELAX_FIXUP (this_segment_type))
2572 for (; fixP; fixP = fixP->fx_next)
2574 TC_ADJUST_RELOC_COUNT (fixP, seg_reloc_count);
2575 return seg_reloc_count;
2578 for (; fixP; fixP = fixP->fx_next)
2581 fprintf (stderr, "\nprocessing fixup:\n");
2585 fragP = fixP->fx_frag;
2587 where = fixP->fx_where;
2588 place = fragP->fr_literal + where;
2589 size = fixP->fx_size;
2590 add_symbolP = fixP->fx_addsy;
2591 #ifdef TC_VALIDATE_FIX
2592 TC_VALIDATE_FIX (fixP, this_segment_type, skip);
2594 sub_symbolP = fixP->fx_subsy;
2595 add_number = fixP->fx_offset;
2596 pcrel = fixP->fx_pcrel;
2599 if (add_symbolP != NULL
2600 && symbol_mri_common_p (add_symbolP))
2602 know (add_symbolP->sy_value.X_op == O_symbol);
2603 add_number += S_GET_VALUE (add_symbolP);
2604 fixP->fx_offset = add_number;
2605 add_symbolP = fixP->fx_addsy =
2606 symbol_get_value_expression (add_symbolP)->X_add_symbol;
2610 add_symbol_segment = S_GET_SEGMENT (add_symbolP);
2614 resolve_symbol_value (sub_symbolP, finalize_syms);
2615 if (add_symbolP == NULL || add_symbol_segment == absolute_section)
2617 if (add_symbolP != NULL)
2619 add_number += S_GET_VALUE (add_symbolP);
2621 fixP->fx_addsy = NULL;
2624 /* It's just -sym. */
2625 if (S_GET_SEGMENT (sub_symbolP) == absolute_section)
2627 add_number -= S_GET_VALUE (sub_symbolP);
2628 fixP->fx_subsy = NULL;
2631 && S_GET_SEGMENT (sub_symbolP) == this_segment_type)
2633 /* Should try converting to a constant. */
2638 as_bad_where (fixP->fx_file, fixP->fx_line,
2639 _("Negative of non-absolute symbol %s"),
2640 S_GET_NAME (sub_symbolP));
2642 else if (S_GET_SEGMENT (sub_symbolP) == add_symbol_segment
2643 && SEG_NORMAL (add_symbol_segment))
2645 /* Difference of 2 symbols from same segment.
2646 Can't make difference of 2 undefineds: 'value' means
2647 something different for N_UNDF. */
2649 /* Makes no sense to use the difference of 2 arbitrary symbols
2650 as the target of a call instruction. */
2652 as_bad_where (fixP->fx_file, fixP->fx_line,
2653 _("callj to difference of 2 symbols"));
2654 #endif /* TC_I960 */
2655 add_number += S_GET_VALUE (add_symbolP) -
2656 S_GET_VALUE (sub_symbolP);
2659 pcrel = 0; /* No further pcrel processing. */
2661 /* Let the target machine make the final determination
2662 as to whether or not a relocation will be needed to
2663 handle this fixup. */
2664 if (!TC_FORCE_RELOCATION_SECTION (fixP, this_segment_type))
2667 fixP->fx_addsy = NULL;
2668 fixP->fx_subsy = NULL;
2673 /* Different segments in subtraction. */
2674 know (!(S_IS_EXTERNAL (sub_symbolP)
2675 && (S_GET_SEGMENT (sub_symbolP) == absolute_section)));
2677 if ((S_GET_SEGMENT (sub_symbolP) == absolute_section))
2678 add_number -= S_GET_VALUE (sub_symbolP);
2681 else if (S_GET_SEGMENT (sub_symbolP) == this_segment_type
2683 /* Do this even if it's already described as
2684 pc-relative. For example, on the m68k, an
2685 operand of "pc@(foo-.-2)" should address
2686 "foo" in a pc-relative mode. */
2691 /* Make it pc-relative. */
2692 add_number += (MD_PCREL_FROM_SECTION (fixP, this_segment_type)
2693 - S_GET_VALUE (sub_symbolP));
2700 #ifdef UNDEFINED_DIFFERENCE_OK
2701 /* The PA needs this for PIC code generation. We basically
2702 don't want to do anything if we have the difference of two
2703 symbols at this point. */
2706 /* Leave it alone. */
2709 #ifdef BFD_ASSEMBLER
2710 else if (fixP->fx_r_type == BFD_RELOC_GPREL32
2711 || fixP->fx_r_type == BFD_RELOC_GPREL16)
2713 /* Leave it alone. */
2719 sprint_value (buf, fragP->fr_address + where);
2720 as_bad_where (fixP->fx_file, fixP->fx_line,
2721 _("Subtraction of two symbols in different sections \"%s\" {%s section} - \"%s\" {%s section} at file address %s."),
2722 S_GET_NAME (add_symbolP),
2723 segment_name (S_GET_SEGMENT (add_symbolP)),
2724 S_GET_NAME (sub_symbolP),
2725 segment_name (S_GET_SEGMENT (sub_symbolP)),
2733 if (add_symbol_segment == this_segment_type && pcrel && !plt
2734 && TC_RELOC_RTSYM_LOC_FIXUP (fixP))
2736 /* This fixup was made when the symbol's segment was
2737 SEG_UNKNOWN, but it is now in the local segment.
2738 So we know how to do the address without relocation. */
2740 /* reloc_callj() may replace a 'call' with a 'calls' or a
2741 'bal', in which cases it modifies *fixP as appropriate.
2742 In the case of a 'calls', no further work is required,
2743 and *fixP has been set up to make the rest of the code
2746 #endif /* TC_I960 */
2748 add_number += S_GET_VALUE (add_symbolP);
2749 add_number -= MD_PCREL_FROM_SECTION (fixP, this_segment_type);
2750 /* Lie. Don't want further pcrel processing. */
2753 /* Let the target machine make the final determination
2754 as to whether or not a relocation will be needed to
2755 handle this fixup. */
2756 if (!TC_FORCE_RELOCATION (fixP))
2759 fixP->fx_addsy = NULL;
2764 if (add_symbol_segment == absolute_section
2768 /* See comment about reloc_callj() above. */
2770 #endif /* TC_I960 */
2771 add_number += S_GET_VALUE (add_symbolP);
2773 /* Let the target machine make the final determination
2774 as to whether or not a relocation will be needed to
2775 handle this fixup. */
2777 if (!TC_FORCE_RELOCATION (fixP))
2779 fixP->fx_addsy = NULL;
2783 else if (add_symbol_segment == undefined_section
2784 #ifdef BFD_ASSEMBLER
2785 || bfd_is_com_section (add_symbol_segment)
2790 if ((int) fixP->fx_bit_fixP == 13)
2792 /* This is a COBR instruction. They have only a
2793 13-bit displacement and are only to be used
2794 for local branches: flag as error, don't generate
2796 as_bad_where (fixP->fx_file, fixP->fx_line,
2797 _("can't use COBR format with external label"));
2798 fixP->fx_addsy = NULL;
2802 #endif /* TC_I960 */
2806 if (S_IS_COMMON (add_symbolP))
2807 add_number += S_GET_VALUE (add_symbolP);
2808 #endif /* TE_I386AIX */
2809 #endif /* OBJ_COFF */
2815 if (TC_FIX_ADJUSTABLE (fixP))
2816 add_number += S_GET_VALUE (add_symbolP);
2823 add_number -= MD_PCREL_FROM_SECTION (fixP, this_segment_type);
2824 if (add_symbolP == 0)
2826 #ifndef BFD_ASSEMBLER
2827 fixP->fx_addsy = &abs_symbol;
2829 fixP->fx_addsy = section_symbol (absolute_section);
2831 symbol_mark_used_in_reloc (fixP->fx_addsy);
2838 #ifdef MD_APPLY_FIX3
2839 md_apply_fix3 (fixP, &add_number, this_segment_type);
2841 #ifdef BFD_ASSEMBLER
2842 md_apply_fix (fixP, &add_number);
2844 md_apply_fix (fixP, add_number);
2848 #ifndef TC_HANDLES_FX_DONE
2849 /* If the tc-* files haven't been converted, assume it's handling
2850 it the old way, where a null fx_addsy means that the fix has
2851 been applied completely, and no further work is needed. */
2852 if (fixP->fx_addsy == 0 && fixP->fx_pcrel == 0)
2857 if (!fixP->fx_bit_fixP && !fixP->fx_no_overflow && size > 0)
2859 if ((size_t) size < sizeof (valueT))
2864 mask--; /* Set all bits to one. */
2865 mask <<= size * 8 - (fixP->fx_signed ? 1 : 0);
2866 if ((add_number & mask) != 0 && (add_number & mask) != mask)
2868 char buf[50], buf2[50];
2869 sprint_value (buf, fragP->fr_address + where);
2870 if (add_number > 1000)
2871 sprint_value (buf2, add_number);
2873 sprintf (buf2, "%ld", (long) add_number);
2874 as_bad_where (fixP->fx_file, fixP->fx_line,
2875 _("Value of %s too large for field of %d bytes at %s"),
2877 } /* Generic error checking. */
2879 #ifdef WARN_SIGNED_OVERFLOW_WORD
2880 /* Warn if a .word value is too large when treated as a signed
2881 number. We already know it is not too negative. This is to
2882 catch over-large switches generated by gcc on the 68k. */
2883 if (!flag_signed_overflow_ok
2885 && add_number > 0x7fff)
2886 as_bad_where (fixP->fx_file, fixP->fx_line,
2887 _("Signed .word overflow; switch may be too large; %ld at 0x%lx"),
2889 (unsigned long) (fragP->fr_address + where));
2891 } /* Not a bit fix. */
2893 #ifdef TC_VALIDATE_FIX
2894 skip: ATTRIBUTE_UNUSED_LABEL
2898 fprintf (stderr, "result:\n");
2901 } /* For each fixS in this segment. */
2903 TC_ADJUST_RELOC_COUNT (fixP, seg_reloc_count);
2904 return seg_reloc_count;
2907 #endif /* defined (BFD_ASSEMBLER) || (!defined (BFD) && !defined (OBJ_VMS)) */
2910 number_to_chars_bigendian (buf, val, n)
2915 if ((size_t) n > sizeof (val) || n <= 0)
2919 buf[n] = val & 0xff;
2925 number_to_chars_littleendian (buf, val, n)
2930 if ((size_t) n > sizeof (val) || n <= 0)
2934 *buf++ = val & 0xff;
2940 write_print_statistics (file)
2943 fprintf (file, "fixups: %d\n", n_fixups);
2946 /* For debugging. */
2947 extern int indent_level;
2954 fprintf (stderr, "fix %lx %s:%d", (long) fixp, fixp->fx_file, fixp->fx_line);
2956 fprintf (stderr, " pcrel");
2957 if (fixp->fx_pcrel_adjust)
2958 fprintf (stderr, " pcrel_adjust=%d", fixp->fx_pcrel_adjust);
2959 if (fixp->fx_im_disp)
2962 fprintf (stderr, " im_disp=%d", fixp->fx_im_disp);
2964 fprintf (stderr, " im_disp");
2968 fprintf (stderr, " tcbit");
2970 fprintf (stderr, " done");
2971 fprintf (stderr, "\n size=%d frag=%lx where=%ld offset=%lx addnumber=%lx",
2972 fixp->fx_size, (long) fixp->fx_frag, (long) fixp->fx_where,
2973 (long) fixp->fx_offset, (long) fixp->fx_addnumber);
2974 #ifdef BFD_ASSEMBLER
2975 fprintf (stderr, "\n %s (%d)", bfd_get_reloc_code_name (fixp->fx_r_type),
2978 #ifdef NEED_FX_R_TYPE
2979 fprintf (stderr, " r_type=%d", fixp->fx_r_type);
2984 fprintf (stderr, "\n +<");
2985 print_symbol_value_1 (stderr, fixp->fx_addsy);
2986 fprintf (stderr, ">");
2990 fprintf (stderr, "\n -<");
2991 print_symbol_value_1 (stderr, fixp->fx_subsy);
2992 fprintf (stderr, ">");
2994 fprintf (stderr, "\n");
2995 #ifdef TC_FIX_DATA_PRINT
2996 TC_FIX_DATA_PRINT (stderr, fixp);