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 TC_FINALIZE_SYMS_BEFORE_SIZE_SEG
56 #define TC_FINALIZE_SYMS_BEFORE_SIZE_SEG 1
59 #ifndef MD_PCREL_FROM_SECTION
60 #define MD_PCREL_FROM_SECTION(FIXP, SEC) md_pcrel_from(FIXP)
63 #ifndef WORKING_DOT_WORD
64 extern CONST
int md_short_jump_size
;
65 extern CONST
int md_long_jump_size
;
68 /* Used to control final evaluation of expressions. */
69 int finalize_syms
= 0;
71 int symbol_table_frozen
;
72 void print_fixup
PARAMS ((fixS
*));
75 static void renumber_sections
PARAMS ((bfd
*, asection
*, PTR
));
77 /* We generally attach relocs to frag chains. However, after we have
78 chained these all together into a segment, any relocs we add after
79 that must be attached to a segment. This will include relocs added
80 in md_estimate_size_for_relax, for example. */
81 static int frags_chained
= 0;
87 struct frag
*text_frag_root
;
88 struct frag
*data_frag_root
;
89 struct frag
*bss_frag_root
;
91 struct frag
*text_last_frag
; /* Last frag in segment. */
92 struct frag
*data_last_frag
; /* Last frag in segment. */
93 static struct frag
*bss_last_frag
; /* Last frag in segment. */
97 static object_headers headers
;
100 long string_byte_count
;
101 char *next_object_file_charP
; /* Tracks object file bytes. */
104 int magic_number_for_object_file
= DEFAULT_MAGIC_NUMBER_FOR_OBJECT_FILE
;
107 #endif /* BFD_ASSEMBLER */
112 static fixS
*fix_new_internal
PARAMS ((fragS
*, int where
, int size
,
113 symbolS
*add
, symbolS
*sub
,
114 offsetT offset
, int pcrel
,
115 bfd_reloc_code_real_type r_type
));
117 static fixS
*fix_new_internal
PARAMS ((fragS
*, int where
, int size
,
118 symbolS
*add
, symbolS
*sub
,
119 offsetT offset
, int pcrel
,
122 #if defined (BFD_ASSEMBLER) || (!defined (BFD) && !defined (OBJ_VMS))
123 static long fixup_segment
PARAMS ((fixS
* fixP
, segT this_segment_type
));
125 static relax_addressT relax_align
PARAMS ((relax_addressT addr
, int align
));
126 #if defined (BFD_ASSEMBLER) || ! defined (BFD)
127 static fragS
*chain_frchains_together_1
PARAMS ((segT
, struct frchain
*));
130 static void chain_frchains_together
PARAMS ((bfd
*, segT
, PTR
));
131 static void cvt_frag_to_fill
PARAMS ((segT
, fragS
*));
132 static void adjust_reloc_syms
PARAMS ((bfd
*, asection
*, PTR
));
133 static void write_relocs
PARAMS ((bfd
*, asection
*, PTR
));
134 static void write_contents
PARAMS ((bfd
*, asection
*, PTR
));
135 static void set_symtab
PARAMS ((void));
137 #if defined (BFD_ASSEMBLER) || (! defined (BFD) && ! defined (OBJ_AOUT))
138 static void merge_data_into_text
PARAMS ((void));
140 #if ! defined (BFD_ASSEMBLER) && ! defined (BFD)
141 static void cvt_frag_to_fill
PARAMS ((object_headers
*, segT
, fragS
*));
142 static void remove_subsegs
PARAMS ((frchainS
*, int, fragS
**, fragS
**));
143 static void relax_and_size_all_segments
PARAMS ((void));
145 #if defined (BFD_ASSEMBLER) && defined (OBJ_COFF) && defined (TE_GO32)
146 static void set_segment_vma
PARAMS ((bfd
*, asection
*, PTR
));
149 /* Create a fixS in obstack 'notes'. */
152 fix_new_internal (frag
, where
, size
, add_symbol
, sub_symbol
, offset
, pcrel
,
154 fragS
*frag
; /* Which frag? */
155 int where
; /* Where in that frag? */
156 int size
; /* 1, 2, or 4 usually. */
157 symbolS
*add_symbol
; /* X_add_symbol. */
158 symbolS
*sub_symbol
; /* X_op_symbol. */
159 offsetT offset
; /* X_add_number. */
160 int pcrel
; /* TRUE if PC-relative relocation. */
162 bfd_reloc_code_real_type r_type
; /* Relocation type. */
164 int r_type
; /* Relocation type. */
171 fixP
= (fixS
*) obstack_alloc (¬es
, sizeof (fixS
));
173 fixP
->fx_frag
= frag
;
174 fixP
->fx_where
= where
;
175 fixP
->fx_size
= size
;
176 /* We've made fx_size a narrow field; check that it's wide enough. */
177 if (fixP
->fx_size
!= size
)
179 as_bad (_("field fx_size too small to hold %d"), size
);
182 fixP
->fx_addsy
= add_symbol
;
183 fixP
->fx_subsy
= sub_symbol
;
184 fixP
->fx_offset
= offset
;
185 fixP
->fx_pcrel
= pcrel
;
187 #if defined(NEED_FX_R_TYPE) || defined (BFD_ASSEMBLER)
188 fixP
->fx_r_type
= r_type
;
190 fixP
->fx_im_disp
= 0;
191 fixP
->fx_pcrel_adjust
= 0;
192 fixP
->fx_bit_fixP
= 0;
193 fixP
->fx_addnumber
= 0;
196 fixP
->fx_no_overflow
= 0;
200 fixP
->fx_cgen
.insn
= NULL
;
201 fixP
->fx_cgen
.opinfo
= 0;
205 TC_INIT_FIX_DATA (fixP
);
208 as_where (&fixP
->fx_file
, &fixP
->fx_line
);
210 /* Usually, we want relocs sorted numerically, but while
211 comparing to older versions of gas that have relocs
212 reverse sorted, it is convenient to have this compile
213 time option. xoxorich. */
217 fixS
**seg_fix_rootP
= (frags_chained
218 ? &seg_info (now_seg
)->fix_root
219 : &frchain_now
->fix_root
);
220 fixS
**seg_fix_tailP
= (frags_chained
221 ? &seg_info (now_seg
)->fix_tail
222 : &frchain_now
->fix_tail
);
225 #ifdef REVERSE_SORT_RELOCS
227 fixP
->fx_next
= *seg_fix_rootP
;
228 *seg_fix_rootP
= fixP
;
230 #else /* REVERSE_SORT_RELOCS */
232 fixP
->fx_next
= NULL
;
235 (*seg_fix_tailP
)->fx_next
= fixP
;
237 *seg_fix_rootP
= fixP
;
238 *seg_fix_tailP
= fixP
;
240 #endif /* REVERSE_SORT_RELOCS */
246 /* Create a fixup relative to a symbol (plus a constant). */
249 fix_new (frag
, where
, size
, add_symbol
, offset
, pcrel
, r_type
)
250 fragS
*frag
; /* Which frag? */
251 int where
; /* Where in that frag? */
252 int size
; /* 1, 2, or 4 usually. */
253 symbolS
*add_symbol
; /* X_add_symbol. */
254 offsetT offset
; /* X_add_number. */
255 int pcrel
; /* TRUE if PC-relative relocation. */
257 bfd_reloc_code_real_type r_type
; /* Relocation type. */
259 int r_type
; /* Relocation type. */
262 return fix_new_internal (frag
, where
, size
, add_symbol
,
263 (symbolS
*) NULL
, offset
, pcrel
, r_type
);
266 /* Create a fixup for an expression. Currently we only support fixups
267 for difference expressions. That is itself more than most object
268 file formats support anyhow. */
271 fix_new_exp (frag
, where
, size
, exp
, pcrel
, r_type
)
272 fragS
*frag
; /* Which frag? */
273 int where
; /* Where in that frag? */
274 int size
; /* 1, 2, or 4 usually. */
275 expressionS
*exp
; /* Expression. */
276 int pcrel
; /* TRUE if PC-relative relocation. */
278 bfd_reloc_code_real_type r_type
; /* Relocation type. */
280 int r_type
; /* Relocation type. */
293 as_bad (_("register value used as expression"));
297 /* This comes up when _GLOBAL_OFFSET_TABLE_+(.-L0) is read, if
298 the difference expression cannot immediately be reduced. */
300 symbolS
*stmp
= make_expr_symbol (exp
);
302 exp
->X_op
= O_symbol
;
303 exp
->X_op_symbol
= 0;
304 exp
->X_add_symbol
= stmp
;
305 exp
->X_add_number
= 0;
307 return fix_new_exp (frag
, where
, size
, exp
, pcrel
, r_type
);
311 add
= exp
->X_add_symbol
;
312 off
= exp
->X_add_number
;
314 #if defined(BFD_ASSEMBLER)
315 r_type
= BFD_RELOC_RVA
;
317 #if defined(TC_RVA_RELOC)
318 r_type
= TC_RVA_RELOC
;
320 as_fatal (_("rva not supported"));
326 sub
= exp
->X_add_symbol
;
327 off
= exp
->X_add_number
;
331 sub
= exp
->X_op_symbol
;
334 add
= exp
->X_add_symbol
;
337 off
= exp
->X_add_number
;
341 add
= make_expr_symbol (exp
);
345 return fix_new_internal (frag
, where
, size
, add
, sub
, off
, pcrel
, r_type
);
348 /* Append a string onto another string, bumping the pointer along. */
350 append (charPP
, fromP
, length
)
353 unsigned long length
;
355 /* Don't trust memcpy() of 0 chars. */
359 memcpy (*charPP
, fromP
, length
);
363 #ifndef BFD_ASSEMBLER
364 int section_alignment
[SEG_MAXIMUM_ORDINAL
];
367 /* This routine records the largest alignment seen for each segment.
368 If the beginning of the segment is aligned on the worst-case
369 boundary, all of the other alignments within it will work. At
370 least one object format really uses this info. */
373 record_alignment (seg
, align
)
374 /* Segment to which alignment pertains. */
376 /* Alignment, as a power of 2 (e.g., 1 => 2-byte boundary, 2 => 4-byte
380 if (seg
== absolute_section
)
383 if ((unsigned int) align
> bfd_get_section_alignment (stdoutput
, seg
))
384 bfd_set_section_alignment (stdoutput
, seg
, align
);
386 if (align
> section_alignment
[(int) seg
])
387 section_alignment
[(int) seg
] = align
;
392 get_recorded_alignment (seg
)
395 if (seg
== absolute_section
)
398 return bfd_get_section_alignment (stdoutput
, seg
);
400 return section_alignment
[(int) seg
];
406 /* Reset the section indices after removing the gas created sections. */
409 renumber_sections (abfd
, sec
, countparg
)
410 bfd
*abfd ATTRIBUTE_UNUSED
;
414 int *countp
= (int *) countparg
;
416 sec
->index
= *countp
;
420 #endif /* defined (BFD_ASSEMBLER) */
422 #if defined (BFD_ASSEMBLER) || ! defined (BFD)
425 chain_frchains_together_1 (section
, frchp
)
427 struct frchain
*frchp
;
429 fragS dummy
, *prev_frag
= &dummy
;
431 fixS fix_dummy
, *prev_fix
= &fix_dummy
;
434 for (; frchp
&& frchp
->frch_seg
== section
; frchp
= frchp
->frch_next
)
436 prev_frag
->fr_next
= frchp
->frch_root
;
437 prev_frag
= frchp
->frch_last
;
438 assert (prev_frag
->fr_type
!= 0);
440 if (frchp
->fix_root
!= (fixS
*) NULL
)
442 if (seg_info (section
)->fix_root
== (fixS
*) NULL
)
443 seg_info (section
)->fix_root
= frchp
->fix_root
;
444 prev_fix
->fx_next
= frchp
->fix_root
;
445 seg_info (section
)->fix_tail
= frchp
->fix_tail
;
446 prev_fix
= frchp
->fix_tail
;
450 assert (prev_frag
->fr_type
!= 0);
451 prev_frag
->fr_next
= 0;
460 chain_frchains_together (abfd
, section
, xxx
)
461 bfd
*abfd ATTRIBUTE_UNUSED
;
463 PTR xxx ATTRIBUTE_UNUSED
;
465 segment_info_type
*info
;
467 /* BFD may have introduced its own sections without using
468 subseg_new, so it is possible that seg_info is NULL. */
469 info
= seg_info (section
);
470 if (info
!= (segment_info_type
*) NULL
)
471 info
->frchainP
->frch_last
472 = chain_frchains_together_1 (section
, info
->frchainP
);
474 /* Now that we've chained the frags together, we must add new fixups
475 to the segment, not to the frag chain. */
481 #if !defined (BFD) && !defined (BFD_ASSEMBLER)
484 remove_subsegs (head
, seg
, root
, last
)
490 *root
= head
->frch_root
;
491 *last
= chain_frchains_together_1 (seg
, head
);
496 #if defined (BFD_ASSEMBLER) || !defined (BFD)
500 cvt_frag_to_fill (sec
, fragP
)
501 segT sec ATTRIBUTE_UNUSED
;
505 cvt_frag_to_fill (headersP
, sec
, fragP
)
506 object_headers
*headersP
;
511 switch (fragP
->fr_type
)
519 HANDLE_ALIGN (fragP
);
521 know (fragP
->fr_next
!= NULL
);
522 fragP
->fr_offset
= (fragP
->fr_next
->fr_address
524 - fragP
->fr_fix
) / fragP
->fr_var
;
525 if (fragP
->fr_offset
< 0)
527 as_bad_where (fragP
->fr_file
, fragP
->fr_line
,
528 _("attempt to .org/.space backwards? (%ld)"),
529 (long) fragP
->fr_offset
);
531 fragP
->fr_type
= rs_fill
;
539 valueT value
= S_GET_VALUE (fragP
->fr_symbol
);
542 size
= output_leb128 (fragP
->fr_literal
+ fragP
->fr_fix
, value
,
545 fragP
->fr_fix
+= size
;
546 fragP
->fr_type
= rs_fill
;
548 fragP
->fr_offset
= 0;
549 fragP
->fr_symbol
= NULL
;
554 eh_frame_convert_frag (fragP
);
558 dwarf2dbg_convert_frag (fragP
);
561 case rs_machine_dependent
:
563 md_convert_frag (stdoutput
, sec
, fragP
);
565 md_convert_frag (headersP
, sec
, fragP
);
568 assert (fragP
->fr_next
== NULL
569 || ((offsetT
) (fragP
->fr_next
->fr_address
- fragP
->fr_address
)
572 /* After md_convert_frag, we make the frag into a ".space 0".
573 md_convert_frag() should set up any fixSs and constants
578 #ifndef WORKING_DOT_WORD
581 struct broken_word
*lie
;
583 if (fragP
->fr_subtype
)
585 fragP
->fr_fix
+= md_short_jump_size
;
586 for (lie
= (struct broken_word
*) (fragP
->fr_symbol
);
587 lie
&& lie
->dispfrag
== fragP
;
588 lie
= lie
->next_broken_word
)
590 fragP
->fr_fix
+= md_long_jump_size
;
598 BAD_CASE (fragP
->fr_type
);
603 #endif /* defined (BFD_ASSEMBLER) || !defined (BFD) */
606 static void relax_seg
PARAMS ((bfd
*, asection
*, PTR
));
608 relax_seg (abfd
, sec
, xxx
)
609 bfd
*abfd ATTRIBUTE_UNUSED
;
613 segment_info_type
*seginfo
= seg_info (sec
);
615 if (seginfo
&& seginfo
->frchainP
616 && relax_segment (seginfo
->frchainP
->frch_root
, sec
))
618 int *result
= (int *) xxx
;
623 static void size_seg
PARAMS ((bfd
*, asection
*, PTR
));
625 size_seg (abfd
, sec
, xxx
)
628 PTR xxx ATTRIBUTE_UNUSED
;
632 segment_info_type
*seginfo
;
634 valueT size
, newsize
;
636 subseg_change (sec
, 0);
638 seginfo
= seg_info (sec
);
639 if (seginfo
&& seginfo
->frchainP
)
641 for (fragp
= seginfo
->frchainP
->frch_root
; fragp
; fragp
= fragp
->fr_next
)
642 cvt_frag_to_fill (sec
, fragp
);
643 for (fragp
= seginfo
->frchainP
->frch_root
;
645 fragp
= fragp
->fr_next
)
646 /* Walk to last elt. */
648 size
= fragp
->fr_address
+ fragp
->fr_fix
;
653 flags
= bfd_get_section_flags (abfd
, sec
);
655 if (size
> 0 && ! seginfo
->bss
)
656 flags
|= SEC_HAS_CONTENTS
;
658 /* @@ This is just an approximation. */
659 if (seginfo
&& seginfo
->fix_root
)
663 x
= bfd_set_section_flags (abfd
, sec
, flags
);
666 newsize
= md_section_align (sec
, size
);
667 x
= bfd_set_section_size (abfd
, sec
, newsize
);
670 /* If the size had to be rounded up, add some padding in the last
672 assert (newsize
>= size
);
675 fragS
*last
= seginfo
->frchainP
->frch_last
;
676 fragp
= seginfo
->frchainP
->frch_root
;
677 while (fragp
->fr_next
!= last
)
678 fragp
= fragp
->fr_next
;
679 last
->fr_address
= size
;
680 fragp
->fr_offset
+= newsize
- size
;
683 #ifdef tc_frob_section
684 tc_frob_section (sec
);
686 #ifdef obj_frob_section
687 obj_frob_section (sec
);
693 dump_section_relocs (abfd
, sec
, stream_
)
694 bfd
*abfd ATTRIBUTE_UNUSED
;
698 FILE *stream
= (FILE *) stream_
;
699 segment_info_type
*seginfo
= seg_info (sec
);
700 fixS
*fixp
= seginfo
->fix_root
;
705 fprintf (stream
, "sec %s relocs:\n", sec
->name
);
708 symbolS
*s
= fixp
->fx_addsy
;
710 fprintf (stream
, " %08lx: type %d ", (unsigned long) fixp
,
711 (int) fixp
->fx_r_type
);
713 fprintf (stream
, "no sym\n");
716 print_symbol_value_1 (stream
, s
);
717 fprintf (stream
, "\n");
719 fixp
= fixp
->fx_next
;
723 #define dump_section_relocs(ABFD,SEC,STREAM) ((void) 0)
726 #ifndef EMIT_SECTION_SYMBOLS
727 #define EMIT_SECTION_SYMBOLS 1
731 adjust_reloc_syms (abfd
, sec
, xxx
)
732 bfd
*abfd ATTRIBUTE_UNUSED
;
734 PTR xxx ATTRIBUTE_UNUSED
;
736 segment_info_type
*seginfo
= seg_info (sec
);
742 dump_section_relocs (abfd
, sec
, stderr
);
744 for (fixp
= seginfo
->fix_root
; fixp
; fixp
= fixp
->fx_next
)
748 else if (fixp
->fx_addsy
)
754 fprintf (stderr
, "\n\nadjusting fixup:\n");
758 sym
= fixp
->fx_addsy
;
760 /* All symbols should have already been resolved at this
761 point. It is possible to see unresolved expression
762 symbols, though, since they are not in the regular symbol
765 resolve_symbol_value (sym
);
767 if (fixp
->fx_subsy
!= NULL
)
768 resolve_symbol_value (fixp
->fx_subsy
);
770 /* If this symbol is equated to an undefined symbol, convert
771 the fixup to being against that symbol. */
772 if (sym
!= NULL
&& symbol_equated_p (sym
)
773 && (! S_IS_DEFINED (sym
) || S_IS_COMMON (sym
)))
775 fixp
->fx_offset
+= symbol_get_value_expression (sym
)->X_add_number
;
776 sym
= symbol_get_value_expression (sym
)->X_add_symbol
;
777 fixp
->fx_addsy
= sym
;
780 if (sym
!= NULL
&& symbol_mri_common_p (sym
))
782 /* These symbols are handled specially in fixup_segment. */
786 symsec
= S_GET_SEGMENT (sym
);
791 if (bfd_is_abs_section (symsec
))
793 /* The fixup_segment routine will not use this symbol in a
794 relocation unless TC_FORCE_RELOCATION returns 1. */
795 if (TC_FORCE_RELOCATION (fixp
))
797 symbol_mark_used_in_reloc (fixp
->fx_addsy
);
798 #ifdef UNDEFINED_DIFFERENCE_OK
799 if (fixp
->fx_subsy
!= NULL
)
800 symbol_mark_used_in_reloc (fixp
->fx_subsy
);
806 /* If it's one of these sections, assume the symbol is
807 definitely going to be output. The code in
808 md_estimate_size_before_relax in tc-mips.c uses this test
809 as well, so if you change this code you should look at that
811 if (bfd_is_und_section (symsec
)
812 || bfd_is_com_section (symsec
))
814 symbol_mark_used_in_reloc (fixp
->fx_addsy
);
815 #ifdef UNDEFINED_DIFFERENCE_OK
816 /* We have the difference of an undefined symbol and some
817 other symbol. Make sure to mark the other symbol as used
818 in a relocation so that it will always be output. */
820 symbol_mark_used_in_reloc (fixp
->fx_subsy
);
825 /* Don't try to reduce relocs which refer to non-local symbols
826 in .linkonce sections. It can lead to confusion when a
827 debugging section refers to a .linkonce section. I hope
828 this will always be correct. */
829 if (symsec
!= sec
&& ! S_IS_LOCAL (sym
))
835 if ((bfd_get_section_flags (stdoutput
, symsec
) & SEC_LINK_ONCE
)
840 /* The GNU toolchain uses an extension for ELF: a section
841 beginning with the magic string .gnu.linkonce is a
843 if (strncmp (segment_name (symsec
), ".gnu.linkonce",
844 sizeof ".gnu.linkonce" - 1) == 0)
850 symbol_mark_used_in_reloc (fixp
->fx_addsy
);
851 #ifdef UNDEFINED_DIFFERENCE_OK
852 if (fixp
->fx_subsy
!= NULL
)
853 symbol_mark_used_in_reloc (fixp
->fx_subsy
);
859 /* Since we're reducing to section symbols, don't attempt to reduce
860 anything that's already using one. */
861 if (symbol_section_p (sym
))
863 symbol_mark_used_in_reloc (fixp
->fx_addsy
);
868 /* We can never adjust a reloc against a weak symbol. If we
869 did, and the weak symbol was overridden by a real symbol
870 somewhere else, then our relocation would be pointing at
871 the wrong area of memory. */
874 symbol_mark_used_in_reloc (fixp
->fx_addsy
);
878 /* Never adjust a reloc against local symbol in a merge section. */
879 if (symsec
->flags
& SEC_MERGE
)
881 symbol_mark_used_in_reloc (fixp
->fx_addsy
);
886 /* Is there some other reason we can't adjust this one? (E.g.,
887 call/bal links in i960-bout symbols.) */
888 #ifdef obj_fix_adjustable
889 if (! obj_fix_adjustable (fixp
))
891 symbol_mark_used_in_reloc (fixp
->fx_addsy
);
896 /* Is there some other (target cpu dependent) reason we can't adjust
897 this one? (E.g. relocations involving function addresses on
899 #ifdef tc_fix_adjustable
900 if (! tc_fix_adjustable (fixp
))
902 symbol_mark_used_in_reloc (fixp
->fx_addsy
);
907 /* If the section symbol isn't going to be output, the relocs
908 at least should still work. If not, figure out what to do
909 when we run into that case.
911 We refetch the segment when calling section_symbol, rather
912 than using symsec, because S_GET_VALUE may wind up changing
913 the section when it calls resolve_symbol_value. */
914 fixp
->fx_offset
+= S_GET_VALUE (sym
);
915 fixp
->fx_addsy
= section_symbol (S_GET_SEGMENT (sym
));
916 symbol_mark_used_in_reloc (fixp
->fx_addsy
);
918 fprintf (stderr
, "\nadjusted fixup:\n");
925 #if 1 /* def RELOC_REQUIRES_SYMBOL */
928 /* There was no symbol required by this relocation. However,
929 BFD doesn't really handle relocations without symbols well.
930 (At least, the COFF support doesn't.) So for now we fake up
931 a local symbol in the absolute section. */
933 fixp
->fx_addsy
= section_symbol (absolute_section
);
935 fixp
->fx_addsy
->sy_used_in_reloc
= 1;
940 dump_section_relocs (abfd
, sec
, stderr
);
944 write_relocs (abfd
, sec
, xxx
)
947 PTR xxx ATTRIBUTE_UNUSED
;
949 segment_info_type
*seginfo
= seg_info (sec
);
956 /* If seginfo is NULL, we did not create this section; don't do
961 fixup_segment (seginfo
->fix_root
, sec
);
964 for (fixp
= seginfo
->fix_root
; fixp
; fixp
= fixp
->fx_next
)
967 #ifndef RELOC_EXPANSION_POSSIBLE
968 /* Set up reloc information as well. */
969 relocs
= (arelent
**) xmalloc (n
* sizeof (arelent
*));
970 memset ((char *) relocs
, 0, n
* sizeof (arelent
*));
973 for (fixp
= seginfo
->fix_root
; fixp
!= (fixS
*) NULL
; fixp
= fixp
->fx_next
)
976 bfd_reloc_status_type s
;
985 /* If this is an undefined symbol which was equated to another
986 symbol, then use generate the reloc against the latter symbol
987 rather than the former. */
988 sym
= fixp
->fx_addsy
;
989 while (symbol_equated_p (sym
)
990 && (! S_IS_DEFINED (sym
) || S_IS_COMMON (sym
)))
994 /* We must avoid looping, as that can occur with a badly
996 n
= symbol_get_value_expression (sym
)->X_add_symbol
;
999 fixp
->fx_offset
+= symbol_get_value_expression (sym
)->X_add_number
;
1002 fixp
->fx_addsy
= sym
;
1004 reloc
= tc_gen_reloc (sec
, fixp
);
1012 /* This test is triggered inappropriately for the SH. */
1013 if (fixp
->fx_where
+ fixp
->fx_size
1014 > fixp
->fx_frag
->fr_fix
+ fixp
->fx_frag
->fr_offset
)
1018 s
= bfd_install_relocation (stdoutput
, reloc
,
1019 fixp
->fx_frag
->fr_literal
,
1020 fixp
->fx_frag
->fr_address
,
1026 case bfd_reloc_overflow
:
1027 as_bad_where (fixp
->fx_file
, fixp
->fx_line
, _("relocation overflow"));
1029 case bfd_reloc_outofrange
:
1030 as_bad_where (fixp
->fx_file
, fixp
->fx_line
, _("relocation out of range"));
1033 as_fatal (_("%s:%u: bad return from bfd_install_relocation: %x"),
1034 fixp
->fx_file
, fixp
->fx_line
, s
);
1036 relocs
[i
++] = reloc
;
1039 n
= n
* MAX_RELOC_EXPANSION
;
1040 /* Set up reloc information as well. */
1041 relocs
= (arelent
**) xmalloc (n
* sizeof (arelent
*));
1044 for (fixp
= seginfo
->fix_root
; fixp
!= (fixS
*) NULL
; fixp
= fixp
->fx_next
)
1048 bfd_reloc_status_type s
;
1058 /* If this is an undefined symbol which was equated to another
1059 symbol, then generate the reloc against the latter symbol
1060 rather than the former. */
1061 sym
= fixp
->fx_addsy
;
1062 while (symbol_equated_p (sym
)
1063 && (! S_IS_DEFINED (sym
) || S_IS_COMMON (sym
)))
1064 sym
= symbol_get_value_expression (sym
)->X_add_symbol
;
1065 fixp
->fx_addsy
= sym
;
1067 reloc
= tc_gen_reloc (sec
, fixp
);
1069 for (j
= 0; reloc
[j
]; j
++)
1071 relocs
[i
++] = reloc
[j
];
1074 data
= fixp
->fx_frag
->fr_literal
+ fixp
->fx_where
;
1075 if (fixp
->fx_where
+ fixp
->fx_size
1076 > fixp
->fx_frag
->fr_fix
+ fixp
->fx_frag
->fr_offset
)
1077 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
1078 _("internal error: fixup not contained within frag"));
1079 for (j
= 0; reloc
[j
]; j
++)
1081 s
= bfd_install_relocation (stdoutput
, reloc
[j
],
1082 fixp
->fx_frag
->fr_literal
,
1083 fixp
->fx_frag
->fr_address
,
1089 case bfd_reloc_overflow
:
1090 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
1091 _("relocation overflow"));
1094 as_fatal (_("%s:%u: bad return from bfd_install_relocation"),
1095 fixp
->fx_file
, fixp
->fx_line
);
1106 sympp
= bfd_get_outsymbols (stdoutput
);
1107 nsyms
= bfd_get_symcount (stdoutput
);
1108 for (i
= 0; i
< n
; i
++)
1109 if (((*relocs
[i
]->sym_ptr_ptr
)->flags
& BSF_SECTION_SYM
) == 0)
1111 for (j
= 0; j
< nsyms
; j
++)
1112 if (sympp
[j
] == *relocs
[i
]->sym_ptr_ptr
)
1121 bfd_set_reloc (stdoutput
, sec
, relocs
, n
);
1123 bfd_set_section_flags (abfd
, sec
,
1124 (bfd_get_section_flags (abfd
, sec
)
1125 & (flagword
) ~SEC_RELOC
));
1127 #ifdef SET_SECTION_RELOCS
1128 SET_SECTION_RELOCS (sec
, relocs
, n
);
1136 fprintf (stderr
, "relocs for sec %s\n", sec
->name
);
1137 for (i
= 0; i
< n
; i
++)
1140 s
= *r
->sym_ptr_ptr
;
1141 fprintf (stderr
, " reloc %2d @%08x off %4x : sym %-10s addend %x\n",
1142 i
, r
, r
->address
, s
->name
, r
->addend
);
1149 write_contents (abfd
, sec
, xxx
)
1150 bfd
*abfd ATTRIBUTE_UNUSED
;
1152 PTR xxx ATTRIBUTE_UNUSED
;
1154 segment_info_type
*seginfo
= seg_info (sec
);
1155 unsigned long offset
= 0;
1158 /* Write out the frags. */
1160 || !(bfd_get_section_flags (abfd
, sec
) & SEC_HAS_CONTENTS
))
1163 for (f
= seginfo
->frchainP
->frch_root
;
1168 unsigned long fill_size
;
1172 assert (f
->fr_type
== rs_fill
);
1175 x
= bfd_set_section_contents (stdoutput
, sec
,
1176 f
->fr_literal
, (file_ptr
) offset
,
1177 (bfd_size_type
) f
->fr_fix
);
1180 bfd_perror (stdoutput
->filename
);
1181 as_perror (_("FATAL: Can't write %s"), stdoutput
->filename
);
1182 exit (EXIT_FAILURE
);
1184 offset
+= f
->fr_fix
;
1186 fill_literal
= f
->fr_literal
+ f
->fr_fix
;
1187 fill_size
= f
->fr_var
;
1188 count
= f
->fr_offset
;
1189 assert (count
>= 0);
1190 if (fill_size
&& count
)
1193 if (fill_size
> sizeof (buf
))
1195 /* Do it the old way. Can this ever happen? */
1198 x
= bfd_set_section_contents (stdoutput
, sec
,
1201 (bfd_size_type
) fill_size
);
1204 bfd_perror (stdoutput
->filename
);
1205 as_perror (_("FATAL: Can't write %s"),
1206 stdoutput
->filename
);
1207 exit (EXIT_FAILURE
);
1209 offset
+= fill_size
;
1214 /* Build a buffer full of fill objects and output it as
1215 often as necessary. This saves on the overhead of
1216 potentially lots of bfd_set_section_contents calls. */
1220 n_per_buf
= sizeof (buf
);
1221 memset (buf
, *fill_literal
, n_per_buf
);
1226 n_per_buf
= sizeof (buf
) / fill_size
;
1227 for (i
= n_per_buf
, bufp
= buf
; i
; i
--, bufp
+= fill_size
)
1228 memcpy (bufp
, fill_literal
, fill_size
);
1230 for (; count
> 0; count
-= n_per_buf
)
1232 n_per_buf
= n_per_buf
> count
? count
: n_per_buf
;
1233 x
= bfd_set_section_contents
1234 (stdoutput
, sec
, buf
, (file_ptr
) offset
,
1235 (bfd_size_type
) n_per_buf
* fill_size
);
1237 as_fatal (_("cannot write to output file"));
1238 offset
+= n_per_buf
* fill_size
;
1246 #if defined(BFD_ASSEMBLER) || (!defined (BFD) && !defined(OBJ_AOUT))
1248 merge_data_into_text ()
1250 #if defined(BFD_ASSEMBLER) || defined(MANY_SEGMENTS)
1251 seg_info (text_section
)->frchainP
->frch_last
->fr_next
=
1252 seg_info (data_section
)->frchainP
->frch_root
;
1253 seg_info (text_section
)->frchainP
->frch_last
=
1254 seg_info (data_section
)->frchainP
->frch_last
;
1255 seg_info (data_section
)->frchainP
= 0;
1259 text_last_frag
->fr_next
= data_frag_root
;
1260 text_last_frag
= data_last_frag
;
1261 data_last_frag
= NULL
;
1262 data_frag_root
= NULL
;
1265 for (tmp
= text_fix_root
; tmp
->fx_next
; tmp
= tmp
->fx_next
);;
1266 tmp
->fx_next
= data_fix_root
;
1267 text_fix_tail
= data_fix_tail
;
1270 text_fix_root
= data_fix_root
;
1271 data_fix_root
= NULL
;
1274 #endif /* BFD_ASSEMBLER || (! BFD && ! OBJ_AOUT) */
1276 #if !defined (BFD_ASSEMBLER) && !defined (BFD)
1278 relax_and_size_all_segments ()
1282 relax_segment (text_frag_root
, SEG_TEXT
);
1283 relax_segment (data_frag_root
, SEG_DATA
);
1284 relax_segment (bss_frag_root
, SEG_BSS
);
1286 /* Now the addresses of frags are correct within the segment. */
1287 know (text_last_frag
->fr_type
== rs_fill
&& text_last_frag
->fr_offset
== 0);
1288 H_SET_TEXT_SIZE (&headers
, text_last_frag
->fr_address
);
1289 text_last_frag
->fr_address
= H_GET_TEXT_SIZE (&headers
);
1291 /* Join the 2 segments into 1 huge segment.
1292 To do this, re-compute every rn_address in the SEG_DATA frags.
1293 Then join the data frags after the text frags.
1295 Determine a_data [length of data segment]. */
1298 register relax_addressT slide
;
1300 know ((text_last_frag
->fr_type
== rs_fill
)
1301 && (text_last_frag
->fr_offset
== 0));
1303 H_SET_DATA_SIZE (&headers
, data_last_frag
->fr_address
);
1304 data_last_frag
->fr_address
= H_GET_DATA_SIZE (&headers
);
1305 slide
= H_GET_TEXT_SIZE (&headers
); /* & in file of the data segment. */
1307 #define RoundUp(N,S) (((N)+(S)-1)&-(S))
1308 /* For b.out: If the data section has a strict alignment
1309 requirement, its load address in the .o file will be
1310 rounded up from the size of the text section. These
1311 two values are *not* the same! Similarly for the bss
1313 slide
= RoundUp (slide
, 1 << section_alignment
[SEG_DATA
]);
1316 for (fragP
= data_frag_root
; fragP
; fragP
= fragP
->fr_next
)
1317 fragP
->fr_address
+= slide
;
1319 know (text_last_frag
!= 0);
1320 text_last_frag
->fr_next
= data_frag_root
;
1324 H_SET_DATA_SIZE (&headers
, 0);
1328 /* See above comments on b.out data section address. */
1331 if (data_last_frag
== 0)
1332 bss_vma
= H_GET_TEXT_SIZE (&headers
);
1334 bss_vma
= data_last_frag
->fr_address
;
1335 bss_vma
= RoundUp (bss_vma
, 1 << section_alignment
[SEG_BSS
]);
1336 bss_address_frag
.fr_address
= bss_vma
;
1338 #else /* ! OBJ_BOUT */
1339 bss_address_frag
.fr_address
= (H_GET_TEXT_SIZE (&headers
) +
1340 H_GET_DATA_SIZE (&headers
));
1342 #endif /* ! OBJ_BOUT */
1344 /* Slide all the frags. */
1347 relax_addressT slide
= bss_address_frag
.fr_address
;
1349 for (fragP
= bss_frag_root
; fragP
; fragP
= fragP
->fr_next
)
1350 fragP
->fr_address
+= slide
;
1354 H_SET_BSS_SIZE (&headers
,
1355 bss_last_frag
->fr_address
- bss_frag_root
->fr_address
);
1357 H_SET_BSS_SIZE (&headers
, 0);
1359 #endif /* ! BFD_ASSEMBLER && ! BFD */
1361 #if defined (BFD_ASSEMBLER) || !defined (BFD)
1363 #ifdef BFD_ASSEMBLER
1371 extern PTR bfd_alloc
PARAMS ((bfd
*, size_t));
1373 /* Count symbols. We can't rely on a count made by the loop in
1374 write_object_file, because *_frob_file may add a new symbol or
1377 for (symp
= symbol_rootP
; symp
; symp
= symbol_next (symp
))
1384 asympp
= (asymbol
**) bfd_alloc (stdoutput
,
1385 nsyms
* sizeof (asymbol
*));
1386 symp
= symbol_rootP
;
1387 for (i
= 0; i
< nsyms
; i
++, symp
= symbol_next (symp
))
1389 asympp
[i
] = symbol_get_bfdsym (symp
);
1390 symbol_mark_written (symp
);
1395 result
= bfd_set_symtab (stdoutput
, asympp
, nsyms
);
1396 assert (result
== true);
1397 symbol_table_frozen
= 1;
1401 #if defined (BFD_ASSEMBLER) && defined (OBJ_COFF) && defined (TE_GO32)
1403 set_segment_vma (abfd
, sec
, xxx
)
1406 PTR xxx ATTRIBUTE_UNUSED
;
1408 static bfd_vma addr
= 0;
1410 bfd_set_section_vma (abfd
, sec
, addr
);
1411 addr
+= bfd_section_size (abfd
, sec
);
1413 #endif /* BFD_ASSEMBLER && OBJ_COFF && !TE_PE */
1415 /* Finish the subsegments. After every sub-segment, we fake an
1416 ".align ...". This conforms to BSD4.2 brane-damage. We then fake
1417 ".fill 0" because that is the kind of frag that requires least
1418 thought. ".align" frags like to have a following frag since that
1419 makes calculating their intended length trivial. */
1421 #ifndef SUB_SEGMENT_ALIGN
1422 #ifdef BFD_ASSEMBLER
1423 #define SUB_SEGMENT_ALIGN(SEG) (0)
1425 #define SUB_SEGMENT_ALIGN(SEG) (2)
1432 struct frchain
*frchainP
;
1434 for (frchainP
= frchain_root
; frchainP
; frchainP
= frchainP
->frch_next
)
1438 subseg_set (frchainP
->frch_seg
, frchainP
->frch_subseg
);
1440 /* This now gets called even if we had errors. In that case,
1441 any alignment is meaningless, and, moreover, will look weird
1442 if we are generating a listing. */
1443 alignment
= had_errors () ? 0 : SUB_SEGMENT_ALIGN (now_seg
);
1445 /* The last subsegment gets an aligment corresponding to the
1446 alignment of the section. This allows proper nop-filling
1447 at the end of code-bearing sections. */
1448 if (!frchainP
->frch_next
|| frchainP
->frch_next
->frch_seg
!= now_seg
)
1449 alignment
= get_recorded_alignment (now_seg
);
1451 if (subseg_text_p (now_seg
))
1452 frag_align_code (alignment
, 0);
1454 frag_align (alignment
, 0, 0);
1456 /* frag_align will have left a new frag.
1457 Use this last frag for an empty ".fill".
1459 For this segment ...
1460 Create a last frag. Do not leave a "being filled in frag". */
1461 frag_wane (frag_now
);
1462 frag_now
->fr_fix
= 0;
1463 know (frag_now
->fr_next
== NULL
);
1467 /* Write the object file. */
1470 write_object_file ()
1472 #if ! defined (BFD_ASSEMBLER) || ! defined (WORKING_DOT_WORD)
1473 fragS
*fragP
; /* Track along all frags. */
1476 /* Do we really want to write it? */
1478 int n_warns
, n_errs
;
1479 n_warns
= had_warnings ();
1480 n_errs
= had_errors ();
1481 /* The -Z flag indicates that an object file should be generated,
1482 regardless of warnings and errors. */
1483 if (flag_always_generate_output
)
1485 if (n_warns
|| n_errs
)
1486 as_warn (_("%d error%s, %d warning%s, generating bad object file"),
1487 n_errs
, n_errs
== 1 ? "" : "s",
1488 n_warns
, n_warns
== 1 ? "" : "s");
1493 as_fatal (_("%d error%s, %d warning%s, no object file generated"),
1494 n_errs
, n_errs
== 1 ? "" : "s",
1495 n_warns
, n_warns
== 1 ? "" : "s");
1500 /* Under VMS we try to be compatible with VAX-11 "C". Thus, we call
1501 a routine to check for the definition of the procedure "_main",
1502 and if so -- fix it up so that it can be program entry point. */
1503 vms_check_for_main ();
1504 #endif /* OBJ_VMS */
1506 /* From now on, we don't care about sub-segments. Build one frag chain
1507 for each segment. Linked thru fr_next. */
1509 #ifdef BFD_ASSEMBLER
1510 /* Remove the sections created by gas for its own purposes. */
1512 asection
**seclist
, *sec
;
1515 seclist
= &stdoutput
->sections
;
1516 while (seclist
&& *seclist
)
1519 while (sec
== reg_section
|| sec
== expr_section
)
1523 stdoutput
->section_count
--;
1528 seclist
= &(*seclist
)->next
;
1531 bfd_map_over_sections (stdoutput
, renumber_sections
, &i
);
1534 bfd_map_over_sections (stdoutput
, chain_frchains_together
, (char *) 0);
1536 remove_subsegs (frchain_root
, SEG_TEXT
, &text_frag_root
, &text_last_frag
);
1537 remove_subsegs (data0_frchainP
, SEG_DATA
, &data_frag_root
, &data_last_frag
);
1538 remove_subsegs (bss0_frchainP
, SEG_BSS
, &bss_frag_root
, &bss_last_frag
);
1541 /* We have two segments. If user gave -R flag, then we must put the
1542 data frags into the text segment. Do this before relaxing so
1543 we know to take advantage of -R and make shorter addresses. */
1544 #if !defined (OBJ_AOUT) || defined (BFD_ASSEMBLER)
1545 if (flag_readonly_data_in_text
)
1547 merge_data_into_text ();
1551 #ifdef BFD_ASSEMBLER
1556 #ifndef WORKING_DOT_WORD
1557 /* We need to reset the markers in the broken word list and
1558 associated frags between calls to relax_segment (via
1559 relax_seg). Since the broken word list is global, we do it
1560 once per round, rather than locally in relax_segment for each
1562 struct broken_word
*brokp
;
1564 for (brokp
= broken_words
;
1565 brokp
!= (struct broken_word
*) NULL
;
1566 brokp
= brokp
->next_broken_word
)
1570 if (brokp
->dispfrag
!= (fragS
*) NULL
1571 && brokp
->dispfrag
->fr_type
== rs_broken_word
)
1572 brokp
->dispfrag
->fr_subtype
= 0;
1577 bfd_map_over_sections (stdoutput
, relax_seg
, &changed
);
1582 /* Note - Most ports will use the default value of
1583 TC_FINALIZE_SYMS_BEFORE_SIZE_SEG, which 1. This will force
1584 local symbols to be resolved, removing their frag information.
1585 Some ports however, will not have finished relaxing all of
1586 their frags and will still need the local symbol frag
1587 information. These ports can set
1588 TC_FINALIZE_SYMS_BEFORE_SIZE_SEG to 0. */
1589 finalize_syms
= TC_FINALIZE_SYMS_BEFORE_SIZE_SEG
;
1591 bfd_map_over_sections (stdoutput
, size_seg
, (char *) 0);
1593 relax_and_size_all_segments ();
1594 #endif /* BFD_ASSEMBLER */
1596 /* Relaxation has completed. Freeze all syms. */
1599 #if defined (BFD_ASSEMBLER) && defined (OBJ_COFF) && defined (TE_GO32)
1600 /* Now that the segments have their final sizes, run through the
1601 sections and set their vma and lma. !BFD gas sets them, and BFD gas
1602 should too. Currently, only DJGPP uses this code, but other
1603 COFF targets may need to execute this too. */
1604 bfd_map_over_sections (stdoutput
, set_segment_vma
, (char *) 0);
1607 #ifndef BFD_ASSEMBLER
1608 /* Crawl the symbol chain.
1610 For each symbol whose value depends on a frag, take the address of
1611 that frag and subsume it into the value of the symbol.
1612 After this, there is just one way to lookup a symbol value.
1613 Values are left in their final state for object file emission.
1614 We adjust the values of 'L' local symbols, even if we do
1615 not intend to emit them to the object file, because their values
1616 are needed for fix-ups.
1618 Unless we saw a -L flag, remove all symbols that begin with 'L'
1619 from the symbol chain. (They are still pointed to by the fixes.)
1621 Count the remaining symbols.
1622 Assign a symbol number to each symbol.
1623 Count the number of string-table chars we will emit.
1624 Put this info into the headers as appropriate. */
1625 know (zero_address_frag
.fr_address
== 0);
1626 string_byte_count
= sizeof (string_byte_count
);
1628 obj_crawl_symbol_chain (&headers
);
1630 if (string_byte_count
== sizeof (string_byte_count
))
1631 string_byte_count
= 0;
1633 H_SET_STRING_SIZE (&headers
, string_byte_count
);
1635 /* Addresses of frags now reflect addresses we use in the object file.
1636 Symbol values are correct.
1637 Scan the frags, converting any ".org"s and ".align"s to ".fill"s.
1638 Also converting any machine-dependent frags using md_convert_frag(); */
1639 subseg_change (SEG_TEXT
, 0);
1641 for (fragP
= text_frag_root
; fragP
; fragP
= fragP
->fr_next
)
1643 /* At this point we have linked all the frags into a single
1644 chain. However, cvt_frag_to_fill may call md_convert_frag
1645 which may call fix_new. We need to ensure that fix_new adds
1646 the fixup to the right section. */
1647 if (fragP
== data_frag_root
)
1648 subseg_change (SEG_DATA
, 0);
1650 cvt_frag_to_fill (&headers
, SEG_TEXT
, fragP
);
1652 /* Some assert macros don't work with # directives mixed in. */
1654 if (!(fragP
->fr_next
== NULL
1656 || fragP
->fr_next
== data_frag_root
1658 || ((fragP
->fr_next
->fr_address
- fragP
->fr_address
)
1659 == (fragP
->fr_fix
+ fragP
->fr_offset
* fragP
->fr_var
))))
1663 #endif /* ! BFD_ASSEMBLER */
1665 #ifndef WORKING_DOT_WORD
1667 struct broken_word
*lie
;
1668 struct broken_word
**prevP
;
1670 prevP
= &broken_words
;
1671 for (lie
= broken_words
; lie
; lie
= lie
->next_broken_word
)
1676 subseg_change (lie
->seg
, lie
->subseg
);
1677 exp
.X_op
= O_subtract
;
1678 exp
.X_add_symbol
= lie
->add
;
1679 exp
.X_op_symbol
= lie
->sub
;
1680 exp
.X_add_number
= lie
->addnum
;
1681 #ifdef BFD_ASSEMBLER
1682 #ifdef TC_CONS_FIX_NEW
1683 TC_CONS_FIX_NEW (lie
->frag
,
1684 lie
->word_goes_here
- lie
->frag
->fr_literal
,
1687 fix_new_exp (lie
->frag
,
1688 lie
->word_goes_here
- lie
->frag
->fr_literal
,
1689 2, &exp
, 0, BFD_RELOC_16
);
1692 #if defined(TC_SPARC) || defined(TC_A29K) || defined(NEED_FX_R_TYPE)
1693 fix_new_exp (lie
->frag
,
1694 lie
->word_goes_here
- lie
->frag
->fr_literal
,
1695 2, &exp
, 0, NO_RELOC
);
1698 fix_new_ns32k_exp (lie
->frag
,
1699 lie
->word_goes_here
- lie
->frag
->fr_literal
,
1700 2, &exp
, 0, 0, 2, 0, 0);
1702 fix_new_exp (lie
->frag
,
1703 lie
->word_goes_here
- lie
->frag
->fr_literal
,
1705 #endif /* TC_NS32K */
1706 #endif /* TC_SPARC|TC_A29K|NEED_FX_R_TYPE */
1707 #endif /* BFD_ASSEMBLER */
1708 *prevP
= lie
->next_broken_word
;
1711 prevP
= &(lie
->next_broken_word
);
1713 for (lie
= broken_words
; lie
;)
1715 struct broken_word
*untruth
;
1717 addressT table_addr
;
1718 addressT from_addr
, to_addr
;
1721 subseg_change (lie
->seg
, lie
->subseg
);
1722 fragP
= lie
->dispfrag
;
1724 /* Find out how many broken_words go here. */
1727 untruth
&& untruth
->dispfrag
== fragP
;
1728 untruth
= untruth
->next_broken_word
)
1729 if (untruth
->added
== 1)
1732 table_ptr
= lie
->dispfrag
->fr_opcode
;
1733 table_addr
= (lie
->dispfrag
->fr_address
1734 + (table_ptr
- lie
->dispfrag
->fr_literal
));
1735 /* Create the jump around the long jumps. This is a short
1736 jump from table_ptr+0 to table_ptr+n*long_jump_size. */
1737 from_addr
= table_addr
;
1738 to_addr
= table_addr
+ md_short_jump_size
+ n
* md_long_jump_size
;
1739 md_create_short_jump (table_ptr
, from_addr
, to_addr
, lie
->dispfrag
,
1741 table_ptr
+= md_short_jump_size
;
1742 table_addr
+= md_short_jump_size
;
1745 lie
&& lie
->dispfrag
== fragP
;
1746 m
++, lie
= lie
->next_broken_word
)
1748 if (lie
->added
== 2)
1750 /* Patch the jump table. */
1751 /* This is the offset from ??? to table_ptr+0. */
1752 to_addr
= table_addr
- S_GET_VALUE (lie
->sub
);
1753 #ifdef TC_CHECK_ADJUSTED_BROKEN_DOT_WORD
1754 TC_CHECK_ADJUSTED_BROKEN_DOT_WORD (to_addr
, lie
);
1756 md_number_to_chars (lie
->word_goes_here
, to_addr
, 2);
1757 for (untruth
= lie
->next_broken_word
;
1758 untruth
&& untruth
->dispfrag
== fragP
;
1759 untruth
= untruth
->next_broken_word
)
1761 if (untruth
->use_jump
== lie
)
1762 md_number_to_chars (untruth
->word_goes_here
, to_addr
, 2);
1765 /* Install the long jump. */
1766 /* This is a long jump from table_ptr+0 to the final target. */
1767 from_addr
= table_addr
;
1768 to_addr
= S_GET_VALUE (lie
->add
) + lie
->addnum
;
1769 md_create_long_jump (table_ptr
, from_addr
, to_addr
, lie
->dispfrag
,
1771 table_ptr
+= md_long_jump_size
;
1772 table_addr
+= md_long_jump_size
;
1776 #endif /* not WORKING_DOT_WORD */
1778 #ifndef BFD_ASSEMBLER
1781 char *the_object_file
;
1782 long object_file_size
;
1783 /* Scan every FixS performing fixups. We had to wait until now to
1784 do this because md_convert_frag() may have made some fixSs. */
1787 subseg_change (SEG_TEXT
, 0);
1788 trsize
= md_reloc_size
* fixup_segment (text_fix_root
, SEG_TEXT
);
1789 subseg_change (SEG_DATA
, 0);
1790 drsize
= md_reloc_size
* fixup_segment (data_fix_root
, SEG_DATA
);
1791 H_SET_RELOCATION_SIZE (&headers
, trsize
, drsize
);
1793 /* FIXME: Move this stuff into the pre-write-hook. */
1794 H_SET_MAGIC_NUMBER (&headers
, magic_number_for_object_file
);
1795 H_SET_ENTRY_POINT (&headers
, 0);
1797 obj_pre_write_hook (&headers
); /* Extra coff stuff. */
1799 object_file_size
= H_GET_FILE_SIZE (&headers
);
1800 next_object_file_charP
= the_object_file
= xmalloc (object_file_size
);
1802 output_file_create (out_file_name
);
1804 obj_header_append (&next_object_file_charP
, &headers
);
1806 know ((next_object_file_charP
- the_object_file
)
1807 == H_GET_HEADER_SIZE (&headers
));
1810 for (fragP
= text_frag_root
; fragP
; fragP
= fragP
->fr_next
)
1812 register long count
;
1813 register char *fill_literal
;
1814 register long fill_size
;
1817 know (fragP
->fr_type
== rs_fill
);
1818 append (&next_object_file_charP
, fragP
->fr_literal
,
1819 (unsigned long) fragP
->fr_fix
);
1820 fill_literal
= fragP
->fr_literal
+ fragP
->fr_fix
;
1821 fill_size
= fragP
->fr_var
;
1822 know (fragP
->fr_offset
>= 0);
1824 for (count
= fragP
->fr_offset
; count
; count
--)
1825 append (&next_object_file_charP
, fill_literal
,
1826 (unsigned long) fill_size
);
1829 know ((next_object_file_charP
- the_object_file
)
1830 == (H_GET_HEADER_SIZE (&headers
)
1831 + H_GET_TEXT_SIZE (&headers
)
1832 + H_GET_DATA_SIZE (&headers
)));
1834 /* Emit relocations. */
1835 obj_emit_relocations (&next_object_file_charP
, text_fix_root
,
1836 (relax_addressT
) 0);
1837 know ((next_object_file_charP
- the_object_file
)
1838 == (H_GET_HEADER_SIZE (&headers
)
1839 + H_GET_TEXT_SIZE (&headers
)
1840 + H_GET_DATA_SIZE (&headers
)
1841 + H_GET_TEXT_RELOCATION_SIZE (&headers
)));
1843 /* Make addresses in data relocation directives relative to beginning of
1844 first data fragment, not end of last text fragment: alignment of the
1845 start of the data segment may place a gap between the segments. */
1846 obj_emit_relocations (&next_object_file_charP
, data_fix_root
,
1847 data0_frchainP
->frch_root
->fr_address
);
1849 obj_emit_relocations (&next_object_file_charP
, data_fix_root
,
1850 text_last_frag
->fr_address
);
1851 #endif /* TC_I960 */
1853 know ((next_object_file_charP
- the_object_file
)
1854 == (H_GET_HEADER_SIZE (&headers
)
1855 + H_GET_TEXT_SIZE (&headers
)
1856 + H_GET_DATA_SIZE (&headers
)
1857 + H_GET_TEXT_RELOCATION_SIZE (&headers
)
1858 + H_GET_DATA_RELOCATION_SIZE (&headers
)));
1860 /* Emit line number entries. */
1861 OBJ_EMIT_LINENO (&next_object_file_charP
, lineno_rootP
, the_object_file
);
1862 know ((next_object_file_charP
- the_object_file
)
1863 == (H_GET_HEADER_SIZE (&headers
)
1864 + H_GET_TEXT_SIZE (&headers
)
1865 + H_GET_DATA_SIZE (&headers
)
1866 + H_GET_TEXT_RELOCATION_SIZE (&headers
)
1867 + H_GET_DATA_RELOCATION_SIZE (&headers
)
1868 + H_GET_LINENO_SIZE (&headers
)));
1871 obj_emit_symbols (&next_object_file_charP
, symbol_rootP
);
1872 know ((next_object_file_charP
- the_object_file
)
1873 == (H_GET_HEADER_SIZE (&headers
)
1874 + H_GET_TEXT_SIZE (&headers
)
1875 + H_GET_DATA_SIZE (&headers
)
1876 + H_GET_TEXT_RELOCATION_SIZE (&headers
)
1877 + H_GET_DATA_RELOCATION_SIZE (&headers
)
1878 + H_GET_LINENO_SIZE (&headers
)
1879 + H_GET_SYMBOL_TABLE_SIZE (&headers
)));
1882 if (string_byte_count
> 0)
1883 obj_emit_strings (&next_object_file_charP
);
1886 bfd_seek (stdoutput
, 0, 0);
1887 bfd_write (the_object_file
, 1, object_file_size
, stdoutput
);
1890 /* Write the data to the file. */
1891 output_file_append (the_object_file
, object_file_size
, out_file_name
);
1892 free (the_object_file
);
1896 /* Now do the VMS-dependent part of writing the object file. */
1897 vms_write_object_file (H_GET_TEXT_SIZE (&headers
),
1898 H_GET_DATA_SIZE (&headers
),
1899 H_GET_BSS_SIZE (&headers
),
1900 text_frag_root
, data_frag_root
);
1901 #endif /* OBJ_VMS */
1902 #else /* BFD_ASSEMBLER */
1904 /* Resolve symbol values. This needs to be done before processing
1910 for (symp
= symbol_rootP
; symp
; symp
= symbol_next (symp
))
1911 resolve_symbol_value (symp
);
1913 resolve_local_symbol_values ();
1917 #ifdef tc_frob_file_before_adjust
1918 tc_frob_file_before_adjust ();
1920 #ifdef obj_frob_file_before_adjust
1921 obj_frob_file_before_adjust ();
1924 bfd_map_over_sections (stdoutput
, adjust_reloc_syms
, (char *) 0);
1926 /* Set up symbol table, and write it out. */
1931 for (symp
= symbol_rootP
; symp
; symp
= symbol_next (symp
))
1936 if (symbol_mri_common_p (symp
))
1938 if (S_IS_EXTERNAL (symp
))
1939 as_bad (_("%s: global symbols not supported in common sections"),
1941 symbol_remove (symp
, &symbol_rootP
, &symbol_lastP
);
1945 name
= S_GET_NAME (symp
);
1949 decode_local_label_name ((char *) S_GET_NAME (symp
));
1950 /* They only differ if `name' is a fb or dollar local
1952 if (name2
!= name
&& ! S_IS_DEFINED (symp
))
1953 as_bad (_("local label `%s' is not defined"), name2
);
1956 /* Do it again, because adjust_reloc_syms might introduce
1957 more symbols. They'll probably only be section symbols,
1958 but they'll still need to have the values computed. */
1959 resolve_symbol_value (symp
);
1961 /* Skip symbols which were equated to undefined or common
1963 if (symbol_equated_p (symp
)
1964 && (! S_IS_DEFINED (symp
) || S_IS_COMMON (symp
)))
1966 symbol_remove (symp
, &symbol_rootP
, &symbol_lastP
);
1970 /* So far, common symbols have been treated like undefined symbols.
1971 Put them in the common section now. */
1972 if (S_IS_DEFINED (symp
) == 0
1973 && S_GET_VALUE (symp
) != 0)
1974 S_SET_SEGMENT (symp
, bfd_com_section_ptr
);
1976 printf ("symbol `%s'\n\t@%x: value=%d flags=%x seg=%s\n",
1977 S_GET_NAME (symp
), symp
,
1979 symbol_get_bfdsym (symp
)->flags
,
1980 segment_name (S_GET_SEGMENT (symp
)));
1983 #ifdef obj_frob_symbol
1984 obj_frob_symbol (symp
, punt
);
1986 #ifdef tc_frob_symbol
1987 if (! punt
|| symbol_used_in_reloc_p (symp
))
1988 tc_frob_symbol (symp
, punt
);
1991 /* If we don't want to keep this symbol, splice it out of
1992 the chain now. If EMIT_SECTION_SYMBOLS is 0, we never
1993 want section symbols. Otherwise, we skip local symbols
1994 and symbols that the frob_symbol macros told us to punt,
1995 but we keep such symbols if they are used in relocs. */
1996 if ((! EMIT_SECTION_SYMBOLS
1997 && symbol_section_p (symp
))
1998 /* Note that S_IS_EXTERN and S_IS_LOCAL are not always
1999 opposites. Sometimes the former checks flags and the
2000 latter examines the name... */
2001 || (!S_IS_EXTERN (symp
)
2002 && (S_IS_LOCAL (symp
) || punt
)
2003 && ! symbol_used_in_reloc_p (symp
)))
2005 symbol_remove (symp
, &symbol_rootP
, &symbol_lastP
);
2007 /* After symbol_remove, symbol_next(symp) still returns
2008 the one that came after it in the chain. So we don't
2009 need to do any extra cleanup work here. */
2013 /* Make sure we really got a value for the symbol. */
2014 if (! symbol_resolved_p (symp
))
2016 as_bad (_("can't resolve value for symbol `%s'"),
2018 symbol_mark_resolved (symp
);
2021 /* Set the value into the BFD symbol. Up til now the value
2022 has only been kept in the gas symbolS struct. */
2023 symbol_get_bfdsym (symp
)->value
= S_GET_VALUE (symp
);
2029 /* Now do any format-specific adjustments to the symbol table, such
2030 as adding file symbols. */
2031 #ifdef tc_adjust_symtab
2032 tc_adjust_symtab ();
2034 #ifdef obj_adjust_symtab
2035 obj_adjust_symtab ();
2038 /* Now that all the sizes are known, and contents correct, we can
2039 start writing to the file. */
2042 /* If *_frob_file changes the symbol value at this point, it is
2043 responsible for moving the changed value into symp->bsym->value
2044 as well. Hopefully all symbol value changing can be done in
2049 #ifdef obj_frob_file
2053 bfd_map_over_sections (stdoutput
, write_relocs
, (char *) 0);
2055 #ifdef tc_frob_file_after_relocs
2056 tc_frob_file_after_relocs ();
2058 #ifdef obj_frob_file_after_relocs
2059 obj_frob_file_after_relocs ();
2062 bfd_map_over_sections (stdoutput
, write_contents
, (char *) 0);
2063 #endif /* BFD_ASSEMBLER */
2067 #ifdef TC_GENERIC_RELAX_TABLE
2069 /* Relax a fragment by scanning TC_GENERIC_RELAX_TABLE. */
2072 relax_frag (segment
, fragP
, stretch
)
2077 const relax_typeS
*this_type
;
2078 const relax_typeS
*start_type
;
2079 relax_substateT next_state
;
2080 relax_substateT this_state
;
2086 const relax_typeS
*table
;
2088 target
= fragP
->fr_offset
;
2089 address
= fragP
->fr_address
;
2090 table
= TC_GENERIC_RELAX_TABLE
;
2091 this_state
= fragP
->fr_subtype
;
2092 start_type
= this_type
= table
+ this_state
;
2093 symbolP
= fragP
->fr_symbol
;
2099 sym_frag
= symbol_get_frag (symbolP
);
2101 #ifndef DIFF_EXPR_OK
2102 #if !defined (MANY_SEGMENTS) && !defined (BFD_ASSEMBLER)
2103 know ((S_GET_SEGMENT (symbolP
) == SEG_ABSOLUTE
)
2104 || (S_GET_SEGMENT (symbolP
) == SEG_DATA
)
2105 || (S_GET_SEGMENT (symbolP
) == SEG_BSS
)
2106 || (S_GET_SEGMENT (symbolP
) == SEG_TEXT
));
2108 know (sym_frag
!= NULL
);
2110 know (!(S_GET_SEGMENT (symbolP
) == absolute_section
)
2111 || sym_frag
== &zero_address_frag
);
2112 target
+= S_GET_VALUE (symbolP
);
2114 /* If frag has yet to be reached on this pass,
2115 assume it will move by STRETCH just as we did.
2116 If this is not so, it will be because some frag
2117 between grows, and that will force another pass. */
2120 && sym_frag
->relax_marker
!= fragP
->relax_marker
2121 && S_GET_SEGMENT (symbolP
) == segment
)
2127 aim
= target
- address
- fragP
->fr_fix
;
2128 #ifdef TC_PCREL_ADJUST
2129 /* Currently only the ns32k family needs this. */
2130 aim
+= TC_PCREL_ADJUST (fragP
);
2132 /* This machine doesn't want to use pcrel_adjust.
2133 In that case, pcrel_adjust should be zero. */
2135 assert (fragP
->fr_targ
.ns32k
.pcrel_adjust
== 0);
2138 #ifdef md_prepare_relax_scan /* formerly called M68K_AIM_KLUDGE */
2139 md_prepare_relax_scan (fragP
, address
, aim
, this_state
, this_type
);
2144 /* Look backwards. */
2145 for (next_state
= this_type
->rlx_more
; next_state
;)
2146 if (aim
>= this_type
->rlx_backward
)
2150 /* Grow to next state. */
2151 this_state
= next_state
;
2152 this_type
= table
+ this_state
;
2153 next_state
= this_type
->rlx_more
;
2158 /* Look forwards. */
2159 for (next_state
= this_type
->rlx_more
; next_state
;)
2160 if (aim
<= this_type
->rlx_forward
)
2164 /* Grow to next state. */
2165 this_state
= next_state
;
2166 this_type
= table
+ this_state
;
2167 next_state
= this_type
->rlx_more
;
2171 growth
= this_type
->rlx_length
- start_type
->rlx_length
;
2173 fragP
->fr_subtype
= this_state
;
2177 #endif /* defined (TC_GENERIC_RELAX_TABLE) */
2179 /* Relax_align. Advance location counter to next address that has 'alignment'
2180 lowest order bits all 0s, return size of adjustment made. */
2181 static relax_addressT
2182 relax_align (address
, alignment
)
2183 register relax_addressT address
; /* Address now. */
2184 register int alignment
; /* Alignment (binary). */
2186 relax_addressT mask
;
2187 relax_addressT new_address
;
2189 mask
= ~((~0) << alignment
);
2190 new_address
= (address
+ mask
) & (~mask
);
2191 #ifdef LINKER_RELAXING_SHRINKS_ONLY
2193 /* We must provide lots of padding, so the linker can discard it
2194 when needed. The linker will not add extra space, ever. */
2195 new_address
+= (1 << alignment
);
2197 return (new_address
- address
);
2200 /* Now we have a segment, not a crowd of sub-segments, we can make
2205 After this, all frags in this segment have addresses that are correct
2206 within the segment. Since segments live in different file addresses,
2207 these frag addresses may not be the same as final object-file
2211 relax_segment (segment_frag_root
, segment
)
2212 struct frag
*segment_frag_root
;
2215 register struct frag
*fragP
;
2216 register relax_addressT address
;
2219 #if !defined (MANY_SEGMENTS) && !defined (BFD_ASSEMBLER)
2220 know (segment
== SEG_DATA
|| segment
== SEG_TEXT
|| segment
== SEG_BSS
);
2222 /* In case md_estimate_size_before_relax() wants to make fixSs. */
2223 subseg_change (segment
, 0);
2225 /* For each frag in segment: count and store (a 1st guess of)
2228 for (fragP
= segment_frag_root
; fragP
; fragP
= fragP
->fr_next
)
2230 fragP
->relax_marker
= 0;
2231 fragP
->fr_address
= address
;
2232 address
+= fragP
->fr_fix
;
2234 switch (fragP
->fr_type
)
2237 address
+= fragP
->fr_offset
* fragP
->fr_var
;
2244 addressT offset
= relax_align (address
, (int) fragP
->fr_offset
);
2246 if (fragP
->fr_subtype
!= 0 && offset
> fragP
->fr_subtype
)
2249 if (offset
% fragP
->fr_var
!= 0)
2251 as_bad_where (fragP
->fr_file
, fragP
->fr_line
,
2252 _("alignment padding (%lu bytes) not a multiple of %ld"),
2253 (unsigned long) offset
, (long) fragP
->fr_var
);
2254 offset
-= (offset
% fragP
->fr_var
);
2263 /* Assume .org is nugatory. It will grow with 1st relax. */
2266 case rs_machine_dependent
:
2267 address
+= md_estimate_size_before_relax (fragP
, segment
);
2270 #ifndef WORKING_DOT_WORD
2271 /* Broken words don't concern us yet. */
2272 case rs_broken_word
:
2277 /* Initial guess is always 1; doing otherwise can result in
2278 stable solutions that are larger than the minimum. */
2279 address
+= fragP
->fr_offset
= 1;
2283 address
+= eh_frame_estimate_size_before_relax (fragP
);
2287 address
+= dwarf2dbg_estimate_size_before_relax (fragP
);
2291 BAD_CASE (fragP
->fr_type
);
2298 long stretch
; /* May be any size, 0 or negative. */
2299 /* Cumulative number of addresses we have relaxed this pass.
2300 We may have relaxed more than one address. */
2301 int stretched
; /* Have we stretched on this pass? */
2302 /* This is 'cuz stretch may be zero, when, in fact some piece of code
2303 grew, and another shrank. If a branch instruction doesn't fit anymore,
2304 we could be scrod. */
2311 for (fragP
= segment_frag_root
; fragP
; fragP
= fragP
->fr_next
)
2314 addressT was_address
;
2318 fragP
->relax_marker
^= 1;
2319 was_address
= fragP
->fr_address
;
2320 address
= fragP
->fr_address
+= stretch
;
2321 symbolP
= fragP
->fr_symbol
;
2322 offset
= fragP
->fr_offset
;
2324 switch (fragP
->fr_type
)
2326 case rs_fill
: /* .fill never relaxes. */
2330 #ifndef WORKING_DOT_WORD
2331 /* JF: This is RMS's idea. I do *NOT* want to be blamed
2332 for it I do not want to write it. I do not want to have
2333 anything to do with it. This is not the proper way to
2334 implement this misfeature. */
2335 case rs_broken_word
:
2337 struct broken_word
*lie
;
2338 struct broken_word
*untruth
;
2340 /* Yes this is ugly (storing the broken_word pointer
2341 in the symbol slot). Still, this whole chunk of
2342 code is ugly, and I don't feel like doing anything
2343 about it. Think of it as stubbornness in action. */
2345 for (lie
= (struct broken_word
*) (fragP
->fr_symbol
);
2346 lie
&& lie
->dispfrag
== fragP
;
2347 lie
= lie
->next_broken_word
)
2353 offset
= (S_GET_VALUE (lie
->add
)
2355 - S_GET_VALUE (lie
->sub
));
2356 if (offset
<= -32768 || offset
>= 32767)
2358 if (flag_warn_displacement
)
2361 sprint_value (buf
, (addressT
) lie
->addnum
);
2362 as_warn_where (fragP
->fr_file
, fragP
->fr_line
,
2363 _(".word %s-%s+%s didn't fit"),
2364 S_GET_NAME (lie
->add
),
2365 S_GET_NAME (lie
->sub
),
2369 if (fragP
->fr_subtype
== 0)
2371 fragP
->fr_subtype
++;
2372 growth
+= md_short_jump_size
;
2374 for (untruth
= lie
->next_broken_word
;
2375 untruth
&& untruth
->dispfrag
== lie
->dispfrag
;
2376 untruth
= untruth
->next_broken_word
)
2377 if ((symbol_get_frag (untruth
->add
)
2378 == symbol_get_frag (lie
->add
))
2379 && (S_GET_VALUE (untruth
->add
)
2380 == S_GET_VALUE (lie
->add
)))
2383 untruth
->use_jump
= lie
;
2385 growth
+= md_long_jump_size
;
2390 } /* case rs_broken_word */
2396 addressT oldoff
, newoff
;
2398 oldoff
= relax_align (was_address
+ fragP
->fr_fix
,
2400 newoff
= relax_align (address
+ fragP
->fr_fix
,
2403 if (fragP
->fr_subtype
!= 0)
2405 if (oldoff
> fragP
->fr_subtype
)
2407 if (newoff
> fragP
->fr_subtype
)
2411 growth
= newoff
- oldoff
;
2417 addressT target
= offset
;
2422 #if !defined (MANY_SEGMENTS) && !defined (BFD_ASSEMBLER)
2423 know ((S_GET_SEGMENT (symbolP
) == SEG_ABSOLUTE
)
2424 || (S_GET_SEGMENT (symbolP
) == SEG_DATA
)
2425 || (S_GET_SEGMENT (symbolP
) == SEG_TEXT
)
2426 || S_GET_SEGMENT (symbolP
) == SEG_BSS
);
2427 know (symbolP
->sy_frag
);
2428 know (!(S_GET_SEGMENT (symbolP
) == SEG_ABSOLUTE
)
2429 || (symbolP
->sy_frag
== &zero_address_frag
));
2431 target
+= S_GET_VALUE (symbolP
);
2434 know (fragP
->fr_next
);
2435 after
= fragP
->fr_next
->fr_address
;
2436 growth
= target
- after
;
2439 /* Growth may be negative, but variable part of frag
2440 cannot have fewer than 0 chars. That is, we can't
2442 as_bad_where (fragP
->fr_file
, fragP
->fr_line
,
2443 _("attempt to .org backwards"));
2445 /* We've issued an error message. Change the
2446 frag to avoid cascading errors. */
2447 fragP
->fr_type
= rs_align
;
2448 fragP
->fr_subtype
= 0;
2449 fragP
->fr_offset
= 0;
2450 fragP
->fr_fix
= after
- address
;
2454 /* This is an absolute growth factor */
2465 amount
= S_GET_VALUE (symbolP
);
2466 if (S_GET_SEGMENT (symbolP
) != absolute_section
2467 || S_IS_COMMON (symbolP
)
2468 || ! S_IS_DEFINED (symbolP
))
2470 as_bad_where (fragP
->fr_file
, fragP
->fr_line
,
2471 _(".space specifies non-absolute value"));
2472 /* Prevent repeat of this error message. */
2473 fragP
->fr_symbol
= 0;
2475 else if (amount
< 0)
2477 as_warn_where (fragP
->fr_file
, fragP
->fr_line
,
2478 _(".space or .fill with negative value, ignored"));
2479 fragP
->fr_symbol
= 0;
2482 growth
= (was_address
+ fragP
->fr_fix
+ amount
2483 - fragP
->fr_next
->fr_address
);
2487 case rs_machine_dependent
:
2488 #ifdef md_relax_frag
2489 growth
= md_relax_frag (segment
, fragP
, stretch
);
2491 #ifdef TC_GENERIC_RELAX_TABLE
2492 /* The default way to relax a frag is to look through
2493 TC_GENERIC_RELAX_TABLE. */
2494 growth
= relax_frag (segment
, fragP
, stretch
);
2495 #endif /* TC_GENERIC_RELAX_TABLE */
2504 value
= resolve_symbol_value (fragP
->fr_symbol
);
2505 size
= sizeof_leb128 (value
, fragP
->fr_subtype
);
2506 growth
= size
- fragP
->fr_offset
;
2507 fragP
->fr_offset
= size
;
2512 growth
= eh_frame_relax_frag (fragP
);
2516 growth
= dwarf2dbg_relax_frag (fragP
);
2520 BAD_CASE (fragP
->fr_type
);
2528 } /* For each frag in the segment. */
2530 while (stretched
); /* Until nothing further to relax. */
2534 for (fragP
= segment_frag_root
; fragP
; fragP
= fragP
->fr_next
)
2535 if (fragP
->last_fr_address
!= fragP
->fr_address
)
2537 fragP
->last_fr_address
= fragP
->fr_address
;
2543 #if defined (BFD_ASSEMBLER) || (!defined (BFD) && !defined (OBJ_VMS))
2545 #ifndef TC_RELOC_RTSYM_LOC_FIXUP
2546 #define TC_RELOC_RTSYM_LOC_FIXUP(X) (1)
2551 Go through all the fixS's in a segment and see which ones can be
2552 handled now. (These consist of fixS where we have since discovered
2553 the value of a symbol, or the address of the frag involved.)
2554 For each one, call md_apply_fix to put the fix into the frag data.
2556 Result is a count of how many relocation structs will be needed to
2557 handle the remaining fixS's that we couldn't completely handle here.
2558 These will be output later by emit_relocations(). */
2561 fixup_segment (fixP
, this_segment_type
)
2562 register fixS
*fixP
;
2563 segT this_segment_type
; /* N_TYPE bits for segment. */
2565 long seg_reloc_count
= 0;
2566 symbolS
*add_symbolP
;
2567 symbolS
*sub_symbolP
;
2574 segT add_symbol_segment
= absolute_section
;
2576 /* If the linker is doing the relaxing, we must not do any fixups.
2578 Well, strictly speaking that's not true -- we could do any that are
2579 PC-relative and don't cross regions that could change size. And for the
2580 i960 (the only machine for which we've got a relaxing linker right now),
2581 we might be able to turn callx/callj into bal anyways in cases where we
2582 know the maximum displacement. */
2583 if (linkrelax
&& TC_LINKRELAX_FIXUP (this_segment_type
))
2585 for (; fixP
; fixP
= fixP
->fx_next
)
2587 TC_ADJUST_RELOC_COUNT (fixP
, seg_reloc_count
);
2588 return seg_reloc_count
;
2591 for (; fixP
; fixP
= fixP
->fx_next
)
2594 fprintf (stderr
, "\nprocessing fixup:\n");
2598 fragP
= fixP
->fx_frag
;
2600 where
= fixP
->fx_where
;
2601 place
= fragP
->fr_literal
+ where
;
2602 size
= fixP
->fx_size
;
2603 add_symbolP
= fixP
->fx_addsy
;
2604 #ifdef TC_VALIDATE_FIX
2605 TC_VALIDATE_FIX (fixP
, this_segment_type
, skip
);
2607 sub_symbolP
= fixP
->fx_subsy
;
2608 add_number
= fixP
->fx_offset
;
2609 pcrel
= fixP
->fx_pcrel
;
2612 if (add_symbolP
!= NULL
2613 && symbol_mri_common_p (add_symbolP
))
2615 know (add_symbolP
->sy_value
.X_op
== O_symbol
);
2616 add_number
+= S_GET_VALUE (add_symbolP
);
2617 fixP
->fx_offset
= add_number
;
2618 add_symbolP
= fixP
->fx_addsy
=
2619 symbol_get_value_expression (add_symbolP
)->X_add_symbol
;
2623 add_symbol_segment
= S_GET_SEGMENT (add_symbolP
);
2627 resolve_symbol_value (sub_symbolP
);
2628 if (add_symbolP
== NULL
|| add_symbol_segment
== absolute_section
)
2630 if (add_symbolP
!= NULL
)
2632 add_number
+= S_GET_VALUE (add_symbolP
);
2634 fixP
->fx_addsy
= NULL
;
2637 /* It's just -sym. */
2638 if (S_GET_SEGMENT (sub_symbolP
) == absolute_section
)
2640 add_number
-= S_GET_VALUE (sub_symbolP
);
2641 fixP
->fx_subsy
= NULL
;
2644 && S_GET_SEGMENT (sub_symbolP
) == this_segment_type
)
2646 /* Should try converting to a constant. */
2651 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
2652 _("negative of non-absolute symbol `%s'"),
2653 S_GET_NAME (sub_symbolP
));
2655 else if (S_GET_SEGMENT (sub_symbolP
) == add_symbol_segment
2656 && SEG_NORMAL (add_symbol_segment
))
2658 /* Difference of 2 symbols from same segment.
2659 Can't make difference of 2 undefineds: 'value' means
2660 something different for N_UNDF. */
2662 /* Makes no sense to use the difference of 2 arbitrary symbols
2663 as the target of a call instruction. */
2665 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
2666 _("callj to difference of two symbols"));
2667 #endif /* TC_I960 */
2668 add_number
+= (S_GET_VALUE (add_symbolP
)
2669 - S_GET_VALUE (sub_symbolP
));
2672 /* See the comment below about 68k weirdness. */
2676 add_number
-= MD_PCREL_FROM_SECTION (fixP
, this_segment_type
);
2679 pcrel
= 0; /* No further pcrel processing. */
2681 /* Let the target machine make the final determination
2682 as to whether or not a relocation will be needed to
2683 handle this fixup. */
2684 if (!TC_FORCE_RELOCATION_SECTION (fixP
, this_segment_type
))
2687 fixP
->fx_addsy
= NULL
;
2688 fixP
->fx_subsy
= NULL
;
2693 /* Different segments in subtraction. */
2694 know (!(S_IS_EXTERNAL (sub_symbolP
)
2695 && (S_GET_SEGMENT (sub_symbolP
) == absolute_section
)));
2697 if ((S_GET_SEGMENT (sub_symbolP
) == absolute_section
))
2698 add_number
-= S_GET_VALUE (sub_symbolP
);
2701 else if (S_GET_SEGMENT (sub_symbolP
) == this_segment_type
)
2703 /* Make it pc-relative. */
2706 /* Do this for m68k even if it's already described
2707 as pc-relative. On the m68k, an operand of
2708 "pc@(foo-.-2)" should address "foo" in a
2709 pc-relative mode. */
2714 add_number
+= MD_PCREL_FROM_SECTION (fixP
,
2720 add_number
-= S_GET_VALUE (sub_symbolP
);
2725 #ifdef UNDEFINED_DIFFERENCE_OK
2726 /* The PA needs this for PIC code generation. We basically
2727 don't want to do anything if we have the difference of two
2728 symbols at this point. */
2731 /* Leave it alone. */
2734 #ifdef BFD_ASSEMBLER
2735 else if (fixP
->fx_r_type
== BFD_RELOC_GPREL32
2736 || fixP
->fx_r_type
== BFD_RELOC_GPREL16
)
2738 /* Leave it alone. */
2744 sprint_value (buf
, fragP
->fr_address
+ where
);
2745 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
2746 _("subtraction of two symbols in different sections `%s' {%s section} - `%s' {%s section} at file address %s"),
2747 S_GET_NAME (add_symbolP
),
2748 segment_name (S_GET_SEGMENT (add_symbolP
)),
2749 S_GET_NAME (sub_symbolP
),
2750 segment_name (S_GET_SEGMENT (sub_symbolP
)),
2758 if (add_symbol_segment
== this_segment_type
&& pcrel
&& !plt
2759 && TC_RELOC_RTSYM_LOC_FIXUP (fixP
))
2761 /* This fixup was made when the symbol's segment was
2762 SEG_UNKNOWN, but it is now in the local segment.
2763 So we know how to do the address without relocation. */
2765 /* reloc_callj() may replace a 'call' with a 'calls' or a
2766 'bal', in which cases it modifies *fixP as appropriate.
2767 In the case of a 'calls', no further work is required,
2768 and *fixP has been set up to make the rest of the code
2771 #endif /* TC_I960 */
2773 add_number
+= S_GET_VALUE (add_symbolP
);
2774 add_number
-= MD_PCREL_FROM_SECTION (fixP
, this_segment_type
);
2775 /* Lie. Don't want further pcrel processing. */
2778 /* Let the target machine make the final determination
2779 as to whether or not a relocation will be needed to
2780 handle this fixup. */
2781 if (!TC_FORCE_RELOCATION (fixP
))
2784 fixP
->fx_addsy
= NULL
;
2789 if (add_symbol_segment
== absolute_section
2793 /* See comment about reloc_callj() above. */
2795 #endif /* TC_I960 */
2796 add_number
+= S_GET_VALUE (add_symbolP
);
2798 /* Let the target machine make the final determination
2799 as to whether or not a relocation will be needed to
2800 handle this fixup. */
2802 if (!TC_FORCE_RELOCATION (fixP
))
2804 fixP
->fx_addsy
= NULL
;
2808 else if (add_symbol_segment
== undefined_section
2809 #ifdef BFD_ASSEMBLER
2810 || bfd_is_com_section (add_symbol_segment
)
2815 if ((int) fixP
->fx_bit_fixP
== 13)
2817 /* This is a COBR instruction. They have only a
2818 13-bit displacement and are only to be used
2819 for local branches: flag as error, don't generate
2821 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
2822 _("can't use COBR format with external label"));
2823 fixP
->fx_addsy
= NULL
;
2827 #endif /* TC_I960 */
2831 if (S_IS_COMMON (add_symbolP
))
2832 add_number
+= S_GET_VALUE (add_symbolP
);
2833 #endif /* TE_I386AIX */
2834 #endif /* OBJ_COFF */
2840 if (TC_FIX_ADJUSTABLE (fixP
))
2841 add_number
+= S_GET_VALUE (add_symbolP
);
2848 add_number
-= MD_PCREL_FROM_SECTION (fixP
, this_segment_type
);
2849 if (add_symbolP
== 0)
2851 #ifndef BFD_ASSEMBLER
2852 fixP
->fx_addsy
= &abs_symbol
;
2854 fixP
->fx_addsy
= section_symbol (absolute_section
);
2856 symbol_mark_used_in_reloc (fixP
->fx_addsy
);
2863 #ifdef MD_APPLY_FIX3
2864 md_apply_fix3 (fixP
, &add_number
, this_segment_type
);
2866 #ifdef BFD_ASSEMBLER
2867 md_apply_fix (fixP
, &add_number
);
2869 md_apply_fix (fixP
, add_number
);
2873 #ifndef TC_HANDLES_FX_DONE
2874 /* If the tc-* files haven't been converted, assume it's handling
2875 it the old way, where a null fx_addsy means that the fix has
2876 been applied completely, and no further work is needed. */
2877 if (fixP
->fx_addsy
== 0 && fixP
->fx_pcrel
== 0)
2882 if (!fixP
->fx_bit_fixP
&& !fixP
->fx_no_overflow
&& size
> 0)
2884 if ((size_t) size
< sizeof (valueT
))
2889 mask
--; /* Set all bits to one. */
2890 mask
<<= size
* 8 - (fixP
->fx_signed
? 1 : 0);
2891 if ((add_number
& mask
) != 0 && (add_number
& mask
) != mask
)
2893 char buf
[50], buf2
[50];
2894 sprint_value (buf
, fragP
->fr_address
+ where
);
2895 if (add_number
> 1000)
2896 sprint_value (buf2
, add_number
);
2898 sprintf (buf2
, "%ld", (long) add_number
);
2899 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
2900 _("value of %s too large for field of %d bytes at %s"),
2902 } /* Generic error checking. */
2904 #ifdef WARN_SIGNED_OVERFLOW_WORD
2905 /* Warn if a .word value is too large when treated as a signed
2906 number. We already know it is not too negative. This is to
2907 catch over-large switches generated by gcc on the 68k. */
2908 if (!flag_signed_overflow_ok
2910 && add_number
> 0x7fff)
2911 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
2912 _("signed .word overflow; switch may be too large; %ld at 0x%lx"),
2914 (unsigned long) (fragP
->fr_address
+ where
));
2916 } /* Not a bit fix. */
2918 #ifdef TC_VALIDATE_FIX
2919 skip
: ATTRIBUTE_UNUSED_LABEL
2923 fprintf (stderr
, "result:\n");
2926 } /* For each fixS in this segment. */
2928 TC_ADJUST_RELOC_COUNT (fixP
, seg_reloc_count
);
2929 return seg_reloc_count
;
2932 #endif /* defined (BFD_ASSEMBLER) || (!defined (BFD) && !defined (OBJ_VMS)) */
2935 number_to_chars_bigendian (buf
, val
, n
)
2940 if ((size_t) n
> sizeof (val
) || n
<= 0)
2944 buf
[n
] = val
& 0xff;
2950 number_to_chars_littleendian (buf
, val
, n
)
2955 if ((size_t) n
> sizeof (val
) || n
<= 0)
2959 *buf
++ = val
& 0xff;
2965 write_print_statistics (file
)
2968 fprintf (file
, "fixups: %d\n", n_fixups
);
2971 /* For debugging. */
2972 extern int indent_level
;
2979 fprintf (stderr
, "fix %lx %s:%d", (long) fixp
, fixp
->fx_file
, fixp
->fx_line
);
2981 fprintf (stderr
, " pcrel");
2982 if (fixp
->fx_pcrel_adjust
)
2983 fprintf (stderr
, " pcrel_adjust=%d", fixp
->fx_pcrel_adjust
);
2984 if (fixp
->fx_im_disp
)
2987 fprintf (stderr
, " im_disp=%d", fixp
->fx_im_disp
);
2989 fprintf (stderr
, " im_disp");
2993 fprintf (stderr
, " tcbit");
2995 fprintf (stderr
, " done");
2996 fprintf (stderr
, "\n size=%d frag=%lx where=%ld offset=%lx addnumber=%lx",
2997 fixp
->fx_size
, (long) fixp
->fx_frag
, (long) fixp
->fx_where
,
2998 (long) fixp
->fx_offset
, (long) fixp
->fx_addnumber
);
2999 #ifdef BFD_ASSEMBLER
3000 fprintf (stderr
, "\n %s (%d)", bfd_get_reloc_code_name (fixp
->fx_r_type
),
3003 #ifdef NEED_FX_R_TYPE
3004 fprintf (stderr
, " r_type=%d", fixp
->fx_r_type
);
3009 fprintf (stderr
, "\n +<");
3010 print_symbol_value_1 (stderr
, fixp
->fx_addsy
);
3011 fprintf (stderr
, ">");
3015 fprintf (stderr
, "\n -<");
3016 print_symbol_value_1 (stderr
, fixp
->fx_subsy
);
3017 fprintf (stderr
, ">");
3019 fprintf (stderr
, "\n");
3020 #ifdef TC_FIX_DATA_PRINT
3021 TC_FIX_DATA_PRINT (stderr
, fixp
);