1 /* ELF object file format
2 Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003 Free Software Foundation, Inc.
5 This file is part of GAS, the GNU Assembler.
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2,
10 or (at your option) any later version.
12 GAS is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
15 the GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 #define OBJ_HEADER "obj-elf.h"
24 #include "safe-ctype.h"
27 #include "struc-symbol.h"
29 #ifndef ECOFF_DEBUGGING
30 #define ECOFF_DEBUGGING 0
32 #define NEED_ECOFF_DEBUG
35 #ifdef NEED_ECOFF_DEBUG
40 #include "elf/alpha.h"
55 static bfd_vma elf_s_get_size
PARAMS ((symbolS
*));
56 static void elf_s_set_size
PARAMS ((symbolS
*, bfd_vma
));
57 static bfd_vma elf_s_get_align
PARAMS ((symbolS
*));
58 static void elf_s_set_align
PARAMS ((symbolS
*, bfd_vma
));
59 static void elf_s_set_other
PARAMS ((symbolS
*, int));
60 static int elf_sec_sym_ok_for_reloc
PARAMS ((asection
*));
61 static void adjust_stab_sections
PARAMS ((bfd
*, asection
*, PTR
));
62 static void build_group_lists
PARAMS ((bfd
*, asection
*, PTR
));
63 static int elf_separate_stab_sections
PARAMS ((void));
64 static void elf_init_stab_section
PARAMS ((segT
));
65 static symbolS
*elf_common
PARAMS ((int));
67 #ifdef NEED_ECOFF_DEBUG
68 static bfd_boolean elf_get_extr
PARAMS ((asymbol
*, EXTR
*));
69 static void elf_set_index
PARAMS ((asymbol
*, bfd_size_type
));
72 static void obj_elf_line
PARAMS ((int));
73 void obj_elf_version
PARAMS ((int));
74 static void obj_elf_size
PARAMS ((int));
75 static void obj_elf_type
PARAMS ((int));
76 static void obj_elf_ident
PARAMS ((int));
77 static void obj_elf_weak
PARAMS ((int));
78 static void obj_elf_local
PARAMS ((int));
79 static void obj_elf_visibility
PARAMS ((int));
80 static int obj_elf_parse_section_letters
PARAMS ((char *, size_t));
81 static int obj_elf_section_word
PARAMS ((char *, size_t));
82 static char *obj_elf_section_name
PARAMS ((void));
83 static int obj_elf_section_type
PARAMS ((char *, size_t));
84 static void obj_elf_symver
PARAMS ((int));
85 static void obj_elf_subsection
PARAMS ((int));
86 static void obj_elf_popsection
PARAMS ((int));
87 static void obj_elf_tls_common
PARAMS ((int));
89 static const pseudo_typeS elf_pseudo_table
[] =
91 {"comm", obj_elf_common
, 0},
92 {"common", obj_elf_common
, 1},
93 {"ident", obj_elf_ident
, 0},
94 {"local", obj_elf_local
, 0},
95 {"previous", obj_elf_previous
, 0},
96 {"section", obj_elf_section
, 0},
97 {"section.s", obj_elf_section
, 0},
98 {"sect", obj_elf_section
, 0},
99 {"sect.s", obj_elf_section
, 0},
100 {"pushsection", obj_elf_section
, 1},
101 {"popsection", obj_elf_popsection
, 0},
102 {"size", obj_elf_size
, 0},
103 {"type", obj_elf_type
, 0},
104 {"version", obj_elf_version
, 0},
105 {"weak", obj_elf_weak
, 0},
107 /* These define symbol visibility. */
108 {"internal", obj_elf_visibility
, STV_INTERNAL
},
109 {"hidden", obj_elf_visibility
, STV_HIDDEN
},
110 {"protected", obj_elf_visibility
, STV_PROTECTED
},
112 /* These are used for stabs-in-elf configurations. */
113 {"line", obj_elf_line
, 0},
115 /* This is a GNU extension to handle symbol versions. */
116 {"symver", obj_elf_symver
, 0},
118 /* A GNU extension to change subsection only. */
119 {"subsection", obj_elf_subsection
, 0},
121 /* These are GNU extensions to aid in garbage collecting C++ vtables. */
122 {"vtable_inherit", (void (*) PARAMS ((int))) &obj_elf_vtable_inherit
, 0},
123 {"vtable_entry", (void (*) PARAMS ((int))) &obj_elf_vtable_entry
, 0},
125 /* These are used for dwarf. */
130 /* We need to trap the section changing calls to handle .previous. */
131 {"data", obj_elf_data
, 0},
132 {"text", obj_elf_text
, 0},
134 {"tls_common", obj_elf_tls_common
, 0},
140 static const pseudo_typeS ecoff_debug_pseudo_table
[] =
142 #ifdef NEED_ECOFF_DEBUG
143 /* COFF style debugging information for ECOFF. .ln is not used; .loc
145 { "def", ecoff_directive_def
, 0 },
146 { "dim", ecoff_directive_dim
, 0 },
147 { "endef", ecoff_directive_endef
, 0 },
148 { "file", ecoff_directive_file
, 0 },
149 { "scl", ecoff_directive_scl
, 0 },
150 { "tag", ecoff_directive_tag
, 0 },
151 { "val", ecoff_directive_val
, 0 },
153 /* COFF debugging requires pseudo-ops .size and .type, but ELF
154 already has meanings for those. We use .esize and .etype
155 instead. These are only generated by gcc anyhow. */
156 { "esize", ecoff_directive_size
, 0 },
157 { "etype", ecoff_directive_type
, 0 },
159 /* ECOFF specific debugging information. */
160 { "begin", ecoff_directive_begin
, 0 },
161 { "bend", ecoff_directive_bend
, 0 },
162 { "end", ecoff_directive_end
, 0 },
163 { "ent", ecoff_directive_ent
, 0 },
164 { "fmask", ecoff_directive_fmask
, 0 },
165 { "frame", ecoff_directive_frame
, 0 },
166 { "loc", ecoff_directive_loc
, 0 },
167 { "mask", ecoff_directive_mask
, 0 },
169 /* Other ECOFF directives. */
170 { "extern", ecoff_directive_extern
, 0 },
172 /* These are used on Irix. I don't know how to implement them. */
173 { "alias", s_ignore
, 0 },
174 { "bgnb", s_ignore
, 0 },
175 { "endb", s_ignore
, 0 },
176 { "lab", s_ignore
, 0 },
177 { "noalias", s_ignore
, 0 },
178 { "verstamp", s_ignore
, 0 },
179 { "vreg", s_ignore
, 0 },
182 {NULL
, NULL
, 0} /* end sentinel */
186 #include "aout/aout64.h"
188 /* This is called when the assembler starts. */
193 /* Add symbols for the known sections to the symbol table. */
194 symbol_table_insert (section_symbol (bfd_get_section_by_name (stdoutput
,
195 TEXT_SECTION_NAME
)));
196 symbol_table_insert (section_symbol (bfd_get_section_by_name (stdoutput
,
197 DATA_SECTION_NAME
)));
198 symbol_table_insert (section_symbol (bfd_get_section_by_name (stdoutput
,
205 pop_insert (elf_pseudo_table
);
207 pop_insert (ecoff_debug_pseudo_table
);
214 return S_GET_SIZE (sym
);
218 elf_s_set_size (sym
, sz
)
222 S_SET_SIZE (sym
, sz
);
226 elf_s_get_align (sym
)
229 return S_GET_ALIGN (sym
);
233 elf_s_set_align (sym
, align
)
237 S_SET_ALIGN (sym
, align
);
241 elf_s_get_other (sym
)
244 return elf_symbol (symbol_get_bfdsym (sym
))->internal_elf_sym
.st_other
;
248 elf_s_set_other (sym
, other
)
252 S_SET_OTHER (sym
, other
);
256 elf_sec_sym_ok_for_reloc (sec
)
259 return obj_sec_sym_ok_for_reloc (sec
);
268 sym
= symbol_new (s
, absolute_section
, (valueT
) 0, (struct frag
*) 0);
269 symbol_set_frag (sym
, &zero_address_frag
);
270 symbol_get_bfdsym (sym
)->flags
|= BSF_FILE
;
272 if (symbol_rootP
!= sym
)
274 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
275 symbol_insert (sym
, symbol_rootP
, &symbol_rootP
, &symbol_lastP
);
277 verify_symbol_chain (symbol_rootP
, symbol_lastP
);
281 #ifdef NEED_ECOFF_DEBUG
287 elf_common (is_common
)
293 offsetT temp
, size
, sign
;
298 if (flag_mri
&& is_common
)
304 name
= input_line_pointer
;
305 c
= get_symbol_end ();
306 /* just after name is now '\0' */
307 p
= input_line_pointer
;
310 if (*input_line_pointer
!= ',')
312 as_bad (_("expected comma after symbol-name"));
313 ignore_rest_of_line ();
316 input_line_pointer
++; /* skip ',' */
317 temp
= get_absolute_expr (&exp
);
318 sign
= (offsetT
) 1 << (stdoutput
->arch_info
->bits_per_address
- 1);
319 size
= temp
& ((sign
<< 1) - 1);
320 if (temp
!= size
|| !exp
.X_unsigned
)
322 as_bad (_(".COMMon length (%ld) out of range, ignored."), (long) temp
);
323 ignore_rest_of_line ();
327 symbolP
= symbol_find_or_make (name
);
329 if (S_IS_DEFINED (symbolP
) && ! S_IS_COMMON (symbolP
))
331 as_bad (_("symbol `%s' is already defined"), S_GET_NAME (symbolP
));
332 ignore_rest_of_line ();
335 if (S_GET_VALUE (symbolP
) != 0)
337 if (S_GET_VALUE (symbolP
) != (valueT
) size
)
339 as_warn (_("length of .comm \"%s\" is already %ld; not changed to %ld"),
340 S_GET_NAME (symbolP
), (long) S_GET_VALUE (symbolP
),
344 know (symbolP
->sy_frag
== &zero_address_frag
);
345 if (*input_line_pointer
!= ',')
350 input_line_pointer
++;
353 if (! have_align
|| *input_line_pointer
!= '"')
359 temp
= get_absolute_expr (&exp
);
363 as_warn (_("common alignment negative; 0 assumed"));
366 if (symbol_get_obj (symbolP
)->local
)
375 old_subsec
= now_subseg
;
378 /* convert to a power of 2 alignment */
379 for (align
= 0; (temp
& 1) == 0; temp
>>= 1, ++align
);
382 as_bad (_("common alignment not a power of 2"));
383 ignore_rest_of_line ();
389 record_alignment (bss_section
, align
);
390 subseg_set (bss_section
, 0);
392 frag_align (align
, 0, 0);
393 if (S_GET_SEGMENT (symbolP
) == bss_section
)
394 symbol_get_frag (symbolP
)->fr_symbol
= 0;
395 symbol_set_frag (symbolP
, frag_now
);
396 pfrag
= frag_var (rs_org
, 1, 1, (relax_substateT
) 0, symbolP
,
397 (offsetT
) size
, (char *) 0);
399 S_SET_SIZE (symbolP
, size
);
400 S_SET_SEGMENT (symbolP
, bss_section
);
401 S_CLEAR_EXTERNAL (symbolP
);
402 subseg_set (old_sec
, old_subsec
);
407 S_SET_VALUE (symbolP
, (valueT
) size
);
408 S_SET_ALIGN (symbolP
, temp
);
409 S_SET_EXTERNAL (symbolP
);
410 S_SET_SEGMENT (symbolP
, bfd_com_section_ptr
);
415 input_line_pointer
++;
416 /* @@ Some use the dot, some don't. Can we get some consistency?? */
417 if (*input_line_pointer
== '.')
418 input_line_pointer
++;
419 /* @@ Some say data, some say bss. */
420 if (strncmp (input_line_pointer
, "bss\"", 4)
421 && strncmp (input_line_pointer
, "data\"", 5))
423 while (*--input_line_pointer
!= '"')
425 input_line_pointer
--;
426 goto bad_common_segment
;
428 while (*input_line_pointer
++ != '"')
430 goto allocate_common
;
433 symbol_get_bfdsym (symbolP
)->flags
|= BSF_OBJECT
;
435 demand_empty_rest_of_line ();
440 p
= input_line_pointer
;
441 while (*p
&& *p
!= '\n')
445 as_bad (_("bad .common segment %s"), input_line_pointer
+ 1);
447 input_line_pointer
= p
;
448 ignore_rest_of_line ();
454 obj_elf_common (is_common
)
457 elf_common (is_common
);
461 obj_elf_tls_common (ignore
)
462 int ignore ATTRIBUTE_UNUSED
;
464 symbolS
*symbolP
= elf_common (0);
467 symbol_get_bfdsym (symbolP
)->flags
|= BSF_THREAD_LOCAL
;
471 obj_elf_local (ignore
)
472 int ignore ATTRIBUTE_UNUSED
;
480 name
= input_line_pointer
;
481 c
= get_symbol_end ();
482 symbolP
= symbol_find_or_make (name
);
483 *input_line_pointer
= c
;
485 S_CLEAR_EXTERNAL (symbolP
);
486 symbol_get_obj (symbolP
)->local
= 1;
489 input_line_pointer
++;
491 if (*input_line_pointer
== '\n')
496 demand_empty_rest_of_line ();
500 obj_elf_weak (ignore
)
501 int ignore ATTRIBUTE_UNUSED
;
509 name
= input_line_pointer
;
510 c
= get_symbol_end ();
511 symbolP
= symbol_find_or_make (name
);
512 *input_line_pointer
= c
;
514 S_SET_WEAK (symbolP
);
515 symbol_get_obj (symbolP
)->local
= 1;
518 input_line_pointer
++;
520 if (*input_line_pointer
== '\n')
525 demand_empty_rest_of_line ();
529 obj_elf_visibility (visibility
)
536 elf_symbol_type
*elfsym
;
540 name
= input_line_pointer
;
541 c
= get_symbol_end ();
542 symbolP
= symbol_find_or_make (name
);
543 *input_line_pointer
= c
;
547 bfdsym
= symbol_get_bfdsym (symbolP
);
548 elfsym
= elf_symbol_from (bfd_asymbol_bfd (bfdsym
), bfdsym
);
552 elfsym
->internal_elf_sym
.st_other
&= ~3;
553 elfsym
->internal_elf_sym
.st_other
|= visibility
;
557 input_line_pointer
++;
561 if (*input_line_pointer
== '\n')
567 demand_empty_rest_of_line ();
570 static segT previous_section
;
571 static int previous_subsection
;
575 struct section_stack
*next
;
577 int subseg
, prev_subseg
;
580 static struct section_stack
*section_stack
;
582 /* Handle the .section pseudo-op. This code supports two different
585 The first is found on Solaris, and looks like
586 .section ".sec1",#alloc,#execinstr,#write
587 Here the names after '#' are the SHF_* flags to turn on for the
588 section. I'm not sure how it determines the SHT_* type (BFD
589 doesn't really give us control over the type, anyhow).
591 The second format is found on UnixWare, and probably most SVR4
592 machines, and looks like
593 .section .sec1,"a",@progbits
594 The quoted string may contain any combination of a, w, x, and
595 represents the SHF_* flags to turn on for the section. The string
596 beginning with '@' can be progbits or nobits. There should be
597 other possibilities, but I don't know what they are. In any case,
598 BFD doesn't really let us set the section type. */
600 /* Certain named sections have particular defined types, listed on p.
602 struct special_section
609 static struct special_section
const special_sections
[] =
611 { ".bss", SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
},
612 { ".comment", SHT_PROGBITS
, 0 },
613 { ".data", SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
614 { ".data1", SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
615 { ".debug", SHT_PROGBITS
, 0 },
616 #if defined (TC_HPPA) && !defined (TE_LINUX) && TARGET_ARCH_SIZE == 64
617 { ".fini", SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
618 { ".init", SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
620 { ".fini", SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
621 { ".init", SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
623 { ".line", SHT_PROGBITS
, 0 },
624 { ".note", SHT_NOTE
, 0 },
625 { ".rodata", SHT_PROGBITS
, SHF_ALLOC
},
626 { ".rodata1", SHT_PROGBITS
, SHF_ALLOC
},
627 { ".tbss", SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_TLS
},
628 { ".tdata", SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_TLS
},
629 { ".text", SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
630 { ".init_array",SHT_INIT_ARRAY
, SHF_ALLOC
+ SHF_WRITE
},
631 { ".fini_array",SHT_FINI_ARRAY
, SHF_ALLOC
+ SHF_WRITE
},
632 { ".preinit_array",SHT_PREINIT_ARRAY
, SHF_ALLOC
+ SHF_WRITE
},
634 #ifdef ELF_TC_SPECIAL_SECTIONS
635 ELF_TC_SPECIAL_SECTIONS
639 /* The following section names are special, but they can not
640 reasonably appear in assembler code. Some of the attributes are
641 processor dependent. */
642 { ".dynamic", SHT_DYNAMIC
, SHF_ALLOC
/* + SHF_WRITE */ },
643 { ".dynstr", SHT_STRTAB
, SHF_ALLOC
},
644 { ".dynsym", SHT_DYNSYM
, SHF_ALLOC
},
645 { ".got", SHT_PROGBITS
, 0 },
646 { ".hash", SHT_HASH
, SHF_ALLOC
},
647 { ".interp", SHT_PROGBITS
, /* SHF_ALLOC */ },
648 { ".plt", SHT_PROGBITS
, 0 },
649 { ".shstrtab",SHT_STRTAB
, 0 },
650 { ".strtab", SHT_STRTAB
, /* SHF_ALLOC */ },
651 { ".symtab", SHT_SYMTAB
, /* SHF_ALLOC */ },
658 obj_elf_change_section (name
, type
, attr
, entsize
, group_name
, linkonce
, push
)
663 const char *group_name
;
672 #ifdef md_flush_pending_output
673 md_flush_pending_output ();
676 /* Switch to the section, creating it if necessary. */
679 struct section_stack
*elt
;
680 elt
= xmalloc (sizeof (struct section_stack
));
681 elt
->next
= section_stack
;
683 elt
->prev_seg
= previous_section
;
684 elt
->subseg
= now_subseg
;
685 elt
->prev_subseg
= previous_subsection
;
688 previous_section
= now_seg
;
689 previous_subsection
= now_subseg
;
691 old_sec
= bfd_get_section_by_name (stdoutput
, name
);
692 sec
= subseg_new (name
, 0);
694 /* See if this is one of the special sections. */
695 for (i
= 0; special_sections
[i
].name
!= NULL
; i
++)
696 if (strcmp (name
, special_sections
[i
].name
) == 0)
698 if (type
== SHT_NULL
)
699 type
= special_sections
[i
].type
;
700 else if (type
!= special_sections
[i
].type
)
703 /* FIXME: gcc, as of 2002-10-22, will emit
705 .section .init_array,"aw",@progbits
707 for __attribute__ ((section (".init_array"))).
708 "@progbits" is incorrect. */
709 && special_sections
[i
].type
!= SHT_INIT_ARRAY
710 && special_sections
[i
].type
!= SHT_FINI_ARRAY
711 && special_sections
[i
].type
!= SHT_PREINIT_ARRAY
)
713 as_warn (_("setting incorrect section type for %s"), name
);
717 as_warn (_("ignoring incorrect section type for %s"), name
);
718 type
= special_sections
[i
].type
;
721 if ((attr
&~ special_sections
[i
].attributes
) != 0
724 /* As a GNU extension, we permit a .note section to be
725 allocatable. If the linker sees an allocateable .note
726 section, it will create a PT_NOTE segment in the output
728 if (strcmp (name
, ".note") != 0
729 || attr
!= SHF_ALLOC
)
730 as_warn (_("setting incorrect section attributes for %s"),
733 attr
|= special_sections
[i
].attributes
;
737 /* Convert ELF type and flags to BFD flags. */
739 | ((attr
& SHF_WRITE
) ? 0 : SEC_READONLY
)
740 | ((attr
& SHF_ALLOC
) ? SEC_ALLOC
: 0)
741 | (((attr
& SHF_ALLOC
) && type
!= SHT_NOBITS
) ? SEC_LOAD
: 0)
742 | ((attr
& SHF_EXECINSTR
) ? SEC_CODE
: 0)
743 | ((attr
& SHF_MERGE
) ? SEC_MERGE
: 0)
744 | ((attr
& SHF_STRINGS
) ? SEC_STRINGS
: 0)
745 | ((attr
& SHF_TLS
) ? SEC_THREAD_LOCAL
: 0));
746 #ifdef md_elf_section_flags
747 flags
= md_elf_section_flags (flags
, attr
, type
);
754 /* Prevent SEC_HAS_CONTENTS from being inadvertently set. */
755 if (type
== SHT_NOBITS
)
756 seg_info (sec
)->bss
= 1;
758 bfd_set_section_flags (stdoutput
, sec
, flags
);
759 if (flags
& SEC_MERGE
)
760 sec
->entsize
= entsize
;
761 elf_group_name (sec
) = group_name
;
762 elf_linkonce_p (sec
) = linkonce
;
764 /* Add a symbol for this section to the symbol table. */
765 secsym
= symbol_find (name
);
767 symbol_set_bfdsym (secsym
, sec
->symbol
);
769 symbol_table_insert (section_symbol (sec
));
773 /* If section attributes are specified the second time we see a
774 particular section, then check that they are the same as we
775 saw the first time. */
776 if (((old_sec
->flags
^ flags
)
777 & (SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
| SEC_CODE
778 | SEC_EXCLUDE
| SEC_SORT_ENTRIES
| SEC_MERGE
| SEC_STRINGS
780 || linkonce
!= elf_linkonce_p (sec
))
781 as_warn (_("ignoring changed section attributes for %s"), name
);
782 if ((flags
& SEC_MERGE
) && old_sec
->entsize
!= (unsigned) entsize
)
783 as_warn (_("ignoring changed section entity size for %s"), name
);
784 if ((attr
& SHF_GROUP
) != 0
785 && strcmp (elf_group_name (old_sec
), group_name
) != 0)
786 as_warn (_("ignoring new section group for %s"), name
);
789 #ifdef md_elf_section_change_hook
790 md_elf_section_change_hook ();
795 obj_elf_parse_section_letters (str
, len
)
812 attr
|= SHF_EXECINSTR
;
828 if (*(str
- 1) == 'a')
831 if (len
> 1 && str
[1] == 's')
840 char *bad_msg
= _("unrecognized .section attribute: want a,w,x,M,S,G,T");
841 #ifdef md_elf_section_letter
842 int md_attr
= md_elf_section_letter (*str
, &bad_msg
);
848 as_warn ("%s", bad_msg
);
861 obj_elf_section_word (str
, len
)
865 if (len
== 5 && strncmp (str
, "write", 5) == 0)
867 if (len
== 5 && strncmp (str
, "alloc", 5) == 0)
869 if (len
== 9 && strncmp (str
, "execinstr", 9) == 0)
870 return SHF_EXECINSTR
;
872 #ifdef md_elf_section_word
874 int md_attr
= md_elf_section_word (str
, len
);
880 as_warn (_("unrecognized section attribute"));
885 obj_elf_section_type (str
, len
)
889 if (len
== 8 && strncmp (str
, "progbits", 8) == 0)
891 if (len
== 6 && strncmp (str
, "nobits", 6) == 0)
894 #ifdef md_elf_section_type
896 int md_type
= md_elf_section_type (str
, len
);
902 as_warn (_("unrecognized section type"));
906 /* Get name of section. */
908 obj_elf_section_name ()
913 if (*input_line_pointer
== '"')
917 name
= demand_copy_C_string (&dummy
);
920 ignore_rest_of_line ();
926 char *end
= input_line_pointer
;
928 while (0 == strchr ("\n\t,; ", *end
))
930 if (end
== input_line_pointer
)
932 as_warn (_("missing name"));
933 ignore_rest_of_line ();
937 name
= xmalloc (end
- input_line_pointer
+ 1);
938 memcpy (name
, input_line_pointer
, end
- input_line_pointer
);
939 name
[end
- input_line_pointer
] = '\0';
940 input_line_pointer
= end
;
947 obj_elf_section (push
)
950 char *name
, *group_name
, *beg
;
951 int type
, attr
, dummy
;
960 #ifdef md_flush_pending_output
961 md_flush_pending_output ();
964 previous_section
= now_seg
;
965 previous_subsection
= now_subseg
;
967 s_mri_sect (&mri_type
);
969 #ifdef md_elf_section_change_hook
970 md_elf_section_change_hook ();
975 #endif /* ! defined (TC_I370) */
977 name
= obj_elf_section_name ();
986 if (*input_line_pointer
== ',')
988 /* Skip the comma. */
989 ++input_line_pointer
;
992 if (*input_line_pointer
== '"')
994 beg
= demand_copy_C_string (&dummy
);
997 ignore_rest_of_line ();
1000 attr
|= obj_elf_parse_section_letters (beg
, strlen (beg
));
1003 if (*input_line_pointer
== ',')
1006 char *save
= input_line_pointer
;
1008 ++input_line_pointer
;
1010 c
= *input_line_pointer
;
1013 beg
= demand_copy_C_string (&dummy
);
1016 ignore_rest_of_line ();
1019 type
= obj_elf_section_type (beg
, strlen (beg
));
1021 else if (c
== '@' || c
== '%')
1023 beg
= ++input_line_pointer
;
1024 c
= get_symbol_end ();
1025 *input_line_pointer
= c
;
1026 type
= obj_elf_section_type (beg
, input_line_pointer
- beg
);
1029 input_line_pointer
= save
;
1033 if ((attr
& SHF_MERGE
) != 0 && *input_line_pointer
== ',')
1035 ++input_line_pointer
;
1037 entsize
= get_absolute_expression ();
1041 as_warn (_("invalid merge entity size"));
1046 else if ((attr
& SHF_MERGE
) != 0)
1048 as_warn (_("entity size for SHF_MERGE not specified"));
1052 if ((attr
& SHF_GROUP
) != 0 && *input_line_pointer
== ',')
1054 ++input_line_pointer
;
1055 group_name
= obj_elf_section_name ();
1056 if (group_name
== NULL
)
1058 else if (strncmp (input_line_pointer
, ",comdat", 7) == 0)
1060 input_line_pointer
+= 7;
1063 else if (strncmp (name
, ".gnu.linkonce", 13) == 0)
1066 else if ((attr
& SHF_GROUP
) != 0)
1068 as_warn (_("group name for SHF_GROUP not specified"));
1079 if (*input_line_pointer
!= '#')
1081 as_warn (_("character following name is not '#'"));
1082 ignore_rest_of_line ();
1085 beg
= ++input_line_pointer
;
1086 c
= get_symbol_end ();
1087 *input_line_pointer
= c
;
1089 attr
|= obj_elf_section_word (beg
, input_line_pointer
- beg
);
1093 while (*input_line_pointer
++ == ',');
1094 --input_line_pointer
;
1098 demand_empty_rest_of_line ();
1100 obj_elf_change_section (name
, type
, attr
, entsize
, group_name
, linkonce
, push
);
1103 /* Change to the .data section. */
1109 #ifdef md_flush_pending_output
1110 md_flush_pending_output ();
1113 previous_section
= now_seg
;
1114 previous_subsection
= now_subseg
;
1117 #ifdef md_elf_section_change_hook
1118 md_elf_section_change_hook ();
1122 /* Change to the .text section. */
1128 #ifdef md_flush_pending_output
1129 md_flush_pending_output ();
1132 previous_section
= now_seg
;
1133 previous_subsection
= now_subseg
;
1136 #ifdef md_elf_section_change_hook
1137 md_elf_section_change_hook ();
1142 obj_elf_subsection (ignore
)
1143 int ignore ATTRIBUTE_UNUSED
;
1147 #ifdef md_flush_pending_output
1148 md_flush_pending_output ();
1151 previous_section
= now_seg
;
1152 previous_subsection
= now_subseg
;
1154 temp
= get_absolute_expression ();
1155 subseg_set (now_seg
, (subsegT
) temp
);
1156 demand_empty_rest_of_line ();
1158 #ifdef md_elf_section_change_hook
1159 md_elf_section_change_hook ();
1163 /* This can be called from the processor backends if they change
1167 obj_elf_section_change_hook ()
1169 previous_section
= now_seg
;
1170 previous_subsection
= now_subseg
;
1174 obj_elf_previous (ignore
)
1175 int ignore ATTRIBUTE_UNUSED
;
1180 if (previous_section
== 0)
1182 as_warn (_(".previous without corresponding .section; ignored"));
1186 #ifdef md_flush_pending_output
1187 md_flush_pending_output ();
1190 new_section
= previous_section
;
1191 new_subsection
= previous_subsection
;
1192 previous_section
= now_seg
;
1193 previous_subsection
= now_subseg
;
1194 subseg_set (new_section
, new_subsection
);
1196 #ifdef md_elf_section_change_hook
1197 md_elf_section_change_hook ();
1202 obj_elf_popsection (xxx
)
1203 int xxx ATTRIBUTE_UNUSED
;
1205 struct section_stack
*top
= section_stack
;
1209 as_warn (_(".popsection without corresponding .pushsection; ignored"));
1213 #ifdef md_flush_pending_output
1214 md_flush_pending_output ();
1217 section_stack
= top
->next
;
1218 previous_section
= top
->prev_seg
;
1219 previous_subsection
= top
->prev_subseg
;
1220 subseg_set (top
->seg
, top
->subseg
);
1223 #ifdef md_elf_section_change_hook
1224 md_elf_section_change_hook ();
1229 obj_elf_line (ignore
)
1230 int ignore ATTRIBUTE_UNUSED
;
1232 /* Assume delimiter is part of expression. BSD4.2 as fails with
1233 delightful bug, so we are not being incompatible here. */
1234 new_logical_line ((char *) NULL
, (int) (get_absolute_expression ()));
1235 demand_empty_rest_of_line ();
1238 /* This handles the .symver pseudo-op, which is used to specify a
1239 symbol version. The syntax is ``.symver NAME,SYMVERNAME''.
1240 SYMVERNAME may contain ELF_VER_CHR ('@') characters. This
1241 pseudo-op causes the assembler to emit a symbol named SYMVERNAME
1242 with the same value as the symbol NAME. */
1245 obj_elf_symver (ignore
)
1246 int ignore ATTRIBUTE_UNUSED
;
1253 name
= input_line_pointer
;
1254 c
= get_symbol_end ();
1256 sym
= symbol_find_or_make (name
);
1258 *input_line_pointer
= c
;
1261 if (*input_line_pointer
!= ',')
1263 as_bad (_("expected comma after name in .symver"));
1264 ignore_rest_of_line ();
1268 ++input_line_pointer
;
1269 name
= input_line_pointer
;
1271 /* Temporarily include '@' in symbol names. */
1272 old_lexat
= lex_type
[(unsigned char) '@'];
1273 lex_type
[(unsigned char) '@'] |= LEX_NAME
;
1274 c
= get_symbol_end ();
1275 lex_type
[(unsigned char) '@'] = old_lexat
;
1277 if (symbol_get_obj (sym
)->versioned_name
== NULL
)
1279 symbol_get_obj (sym
)->versioned_name
= xstrdup (name
);
1281 *input_line_pointer
= c
;
1283 if (strchr (symbol_get_obj (sym
)->versioned_name
,
1284 ELF_VER_CHR
) == NULL
)
1286 as_bad (_("missing version name in `%s' for symbol `%s'"),
1287 symbol_get_obj (sym
)->versioned_name
,
1289 ignore_rest_of_line ();
1295 if (strcmp (symbol_get_obj (sym
)->versioned_name
, name
))
1297 as_bad (_("multiple versions [`%s'|`%s'] for symbol `%s'"),
1298 name
, symbol_get_obj (sym
)->versioned_name
,
1300 ignore_rest_of_line ();
1304 *input_line_pointer
= c
;
1307 demand_empty_rest_of_line ();
1310 /* This handles the .vtable_inherit pseudo-op, which is used to indicate
1311 to the linker the hierarchy in which a particular table resides. The
1312 syntax is ".vtable_inherit CHILDNAME, PARENTNAME". */
1315 obj_elf_vtable_inherit (ignore
)
1316 int ignore ATTRIBUTE_UNUSED
;
1318 char *cname
, *pname
;
1319 symbolS
*csym
, *psym
;
1322 if (*input_line_pointer
== '#')
1323 ++input_line_pointer
;
1325 cname
= input_line_pointer
;
1326 c
= get_symbol_end ();
1327 csym
= symbol_find (cname
);
1329 /* GCFIXME: should check that we don't have two .vtable_inherits for
1330 the same child symbol. Also, we can currently only do this if the
1331 child symbol is already exists and is placed in a fragment. */
1333 if (csym
== NULL
|| symbol_get_frag (csym
) == NULL
)
1335 as_bad ("expected `%s' to have already been set for .vtable_inherit",
1340 *input_line_pointer
= c
;
1343 if (*input_line_pointer
!= ',')
1345 as_bad ("expected comma after name in .vtable_inherit");
1346 ignore_rest_of_line ();
1350 ++input_line_pointer
;
1353 if (*input_line_pointer
== '#')
1354 ++input_line_pointer
;
1356 if (input_line_pointer
[0] == '0'
1357 && (input_line_pointer
[1] == '\0'
1358 || ISSPACE (input_line_pointer
[1])))
1360 psym
= section_symbol (absolute_section
);
1361 ++input_line_pointer
;
1365 pname
= input_line_pointer
;
1366 c
= get_symbol_end ();
1367 psym
= symbol_find_or_make (pname
);
1368 *input_line_pointer
= c
;
1371 demand_empty_rest_of_line ();
1376 assert (symbol_get_value_expression (csym
)->X_op
== O_constant
);
1377 return fix_new (symbol_get_frag (csym
),
1378 symbol_get_value_expression (csym
)->X_add_number
,
1379 0, psym
, 0, 0, BFD_RELOC_VTABLE_INHERIT
);
1382 /* This handles the .vtable_entry pseudo-op, which is used to indicate
1383 to the linker that a vtable slot was used. The syntax is
1384 ".vtable_entry tablename, offset". */
1387 obj_elf_vtable_entry (ignore
)
1388 int ignore ATTRIBUTE_UNUSED
;
1395 if (*input_line_pointer
== '#')
1396 ++input_line_pointer
;
1398 name
= input_line_pointer
;
1399 c
= get_symbol_end ();
1400 sym
= symbol_find_or_make (name
);
1401 *input_line_pointer
= c
;
1404 if (*input_line_pointer
!= ',')
1406 as_bad ("expected comma after name in .vtable_entry");
1407 ignore_rest_of_line ();
1411 ++input_line_pointer
;
1412 if (*input_line_pointer
== '#')
1413 ++input_line_pointer
;
1415 offset
= get_absolute_expression ();
1417 demand_empty_rest_of_line ();
1419 return fix_new (frag_now
, frag_now_fix (), 0, sym
, offset
, 0,
1420 BFD_RELOC_VTABLE_ENTRY
);
1424 elf_obj_read_begin_hook ()
1426 #ifdef NEED_ECOFF_DEBUG
1427 if (ECOFF_DEBUGGING
)
1428 ecoff_read_begin_hook ();
1433 elf_obj_symbol_new_hook (symbolP
)
1436 struct elf_obj_sy
*sy_obj
;
1438 sy_obj
= symbol_get_obj (symbolP
);
1439 sy_obj
->size
= NULL
;
1440 sy_obj
->versioned_name
= NULL
;
1442 #ifdef NEED_ECOFF_DEBUG
1443 if (ECOFF_DEBUGGING
)
1444 ecoff_symbol_new_hook (symbolP
);
1448 /* When setting one symbol equal to another, by default we probably
1449 want them to have the same "size", whatever it means in the current
1453 elf_copy_symbol_attributes (dest
, src
)
1454 symbolS
*dest
, *src
;
1456 struct elf_obj_sy
*srcelf
= symbol_get_obj (src
);
1457 struct elf_obj_sy
*destelf
= symbol_get_obj (dest
);
1460 if (destelf
->size
== NULL
)
1462 (expressionS
*) xmalloc (sizeof (expressionS
));
1463 *destelf
->size
= *srcelf
->size
;
1467 if (destelf
->size
!= NULL
)
1468 free (destelf
->size
);
1469 destelf
->size
= NULL
;
1471 S_SET_SIZE (dest
, S_GET_SIZE (src
));
1472 /* Don't copy visibility. */
1473 S_SET_OTHER (dest
, (ELF_ST_VISIBILITY (S_GET_OTHER (dest
))
1474 | (S_GET_OTHER (src
) & ~ELF_ST_VISIBILITY (-1))));
1478 obj_elf_version (ignore
)
1479 int ignore ATTRIBUTE_UNUSED
;
1484 asection
*seg
= now_seg
;
1485 subsegT subseg
= now_subseg
;
1486 Elf_Internal_Note i_note
;
1487 Elf_External_Note e_note
;
1488 asection
*note_secp
= (asection
*) NULL
;
1492 if (*input_line_pointer
== '\"')
1494 ++input_line_pointer
; /* -> 1st char of string. */
1495 name
= input_line_pointer
;
1497 while (is_a_char (c
= next_char_of_string ()))
1499 c
= *input_line_pointer
;
1500 *input_line_pointer
= '\0';
1501 *(input_line_pointer
- 1) = '\0';
1502 *input_line_pointer
= c
;
1504 /* create the .note section */
1506 note_secp
= subseg_new (".note", 0);
1507 bfd_set_section_flags (stdoutput
,
1509 SEC_HAS_CONTENTS
| SEC_READONLY
);
1511 /* process the version string */
1513 len
= strlen (name
);
1515 i_note
.namesz
= ((len
+ 1) + 3) & ~3; /* round this to word boundary */
1516 i_note
.descsz
= 0; /* no description */
1517 i_note
.type
= NT_VERSION
;
1518 p
= frag_more (sizeof (e_note
.namesz
));
1519 md_number_to_chars (p
, (valueT
) i_note
.namesz
, sizeof (e_note
.namesz
));
1520 p
= frag_more (sizeof (e_note
.descsz
));
1521 md_number_to_chars (p
, (valueT
) i_note
.descsz
, sizeof (e_note
.descsz
));
1522 p
= frag_more (sizeof (e_note
.type
));
1523 md_number_to_chars (p
, (valueT
) i_note
.type
, sizeof (e_note
.type
));
1524 p
= frag_more (len
+ 1);
1527 frag_align (2, 0, 0);
1529 subseg_set (seg
, subseg
);
1533 as_bad (_("expected quoted string"));
1535 demand_empty_rest_of_line ();
1539 obj_elf_size (ignore
)
1540 int ignore ATTRIBUTE_UNUSED
;
1542 char *name
= input_line_pointer
;
1543 char c
= get_symbol_end ();
1548 p
= input_line_pointer
;
1551 if (*input_line_pointer
!= ',')
1554 as_bad (_("expected comma after name `%s' in .size directive"), name
);
1556 ignore_rest_of_line ();
1559 input_line_pointer
++;
1561 if (exp
.X_op
== O_absent
)
1563 as_bad (_("missing expression in .size directive"));
1564 exp
.X_op
= O_constant
;
1565 exp
.X_add_number
= 0;
1568 sym
= symbol_find_or_make (name
);
1570 if (exp
.X_op
== O_constant
)
1572 S_SET_SIZE (sym
, exp
.X_add_number
);
1573 if (symbol_get_obj (sym
)->size
)
1575 xfree (symbol_get_obj (sym
)->size
);
1576 symbol_get_obj (sym
)->size
= NULL
;
1581 symbol_get_obj (sym
)->size
=
1582 (expressionS
*) xmalloc (sizeof (expressionS
));
1583 *symbol_get_obj (sym
)->size
= exp
;
1585 demand_empty_rest_of_line ();
1588 /* Handle the ELF .type pseudo-op. This sets the type of a symbol.
1589 There are five syntaxes:
1591 The first (used on Solaris) is
1593 The second (used on UnixWare) is
1595 The third (reportedly to be used on Irix 6.0) is
1597 The fourth (used on NetBSD/Arm and Linux/ARM) is
1599 The fifth (used on SVR4/860) is
1600 .type SYM,"function"
1604 obj_elf_type (ignore
)
1605 int ignore ATTRIBUTE_UNUSED
;
1610 const char *typename
;
1612 elf_symbol_type
*elfsym
;
1614 name
= input_line_pointer
;
1615 c
= get_symbol_end ();
1616 sym
= symbol_find_or_make (name
);
1617 elfsym
= (elf_symbol_type
*) symbol_get_bfdsym (sym
);
1618 *input_line_pointer
= c
;
1621 if (*input_line_pointer
== ',')
1622 ++input_line_pointer
;
1625 if ( *input_line_pointer
== '#'
1626 || *input_line_pointer
== '@'
1627 || *input_line_pointer
== '"'
1628 || *input_line_pointer
== '%')
1629 ++input_line_pointer
;
1631 typename
= input_line_pointer
;
1632 c
= get_symbol_end ();
1635 if (strcmp (typename
, "function") == 0
1636 || strcmp (typename
, "STT_FUNC") == 0)
1637 type
= BSF_FUNCTION
;
1638 else if (strcmp (typename
, "object") == 0
1639 || strcmp (typename
, "STT_OBJECT") == 0)
1641 #ifdef md_elf_symbol_type
1642 else if ((type
= md_elf_symbol_type (typename
, sym
, elfsym
)) != -1)
1646 as_bad (_("unrecognized symbol type \"%s\""), typename
);
1648 *input_line_pointer
= c
;
1650 if (*input_line_pointer
== '"')
1651 ++input_line_pointer
;
1653 elfsym
->symbol
.flags
|= type
;
1655 demand_empty_rest_of_line ();
1659 obj_elf_ident (ignore
)
1660 int ignore ATTRIBUTE_UNUSED
;
1662 static segT comment_section
;
1663 segT old_section
= now_seg
;
1664 int old_subsection
= now_subseg
;
1666 #ifdef md_flush_pending_output
1667 md_flush_pending_output ();
1670 if (!comment_section
)
1673 comment_section
= subseg_new (".comment", 0);
1674 bfd_set_section_flags (stdoutput
, comment_section
,
1675 SEC_READONLY
| SEC_HAS_CONTENTS
);
1680 subseg_set (comment_section
, 0);
1682 subseg_set (old_section
, old_subsection
);
1685 #ifdef INIT_STAB_SECTION
1687 /* The first entry in a .stabs section is special. */
1690 obj_elf_init_stab_section (seg
)
1696 unsigned int stroff
;
1698 /* Force the section to align to a longword boundary. Without this,
1699 UnixWare ar crashes. */
1700 bfd_set_section_alignment (stdoutput
, seg
, 2);
1702 /* Make space for this first symbol. */
1706 as_where (&file
, (unsigned int *) NULL
);
1707 stabstr_name
= (char *) xmalloc (strlen (segment_name (seg
)) + 4);
1708 strcpy (stabstr_name
, segment_name (seg
));
1709 strcat (stabstr_name
, "str");
1710 stroff
= get_stab_string_offset (file
, stabstr_name
);
1712 md_number_to_chars (p
, stroff
, 4);
1713 seg_info (seg
)->stabu
.p
= p
;
1718 /* Fill in the counts in the first entry in a .stabs section. */
1721 adjust_stab_sections (abfd
, sec
, xxx
)
1724 PTR xxx ATTRIBUTE_UNUSED
;
1731 if (strncmp (".stab", sec
->name
, 5))
1733 if (!strcmp ("str", sec
->name
+ strlen (sec
->name
) - 3))
1736 name
= (char *) alloca (strlen (sec
->name
) + 4);
1737 strcpy (name
, sec
->name
);
1738 strcat (name
, "str");
1739 strsec
= bfd_get_section_by_name (abfd
, name
);
1741 strsz
= bfd_section_size (abfd
, strsec
);
1744 nsyms
= bfd_section_size (abfd
, sec
) / 12 - 1;
1746 p
= seg_info (sec
)->stabu
.p
;
1749 bfd_h_put_16 (abfd
, (bfd_vma
) nsyms
, (bfd_byte
*) p
+ 6);
1750 bfd_h_put_32 (abfd
, (bfd_vma
) strsz
, (bfd_byte
*) p
+ 8);
1753 #ifdef NEED_ECOFF_DEBUG
1755 /* This function is called by the ECOFF code. It is supposed to
1756 record the external symbol information so that the backend can
1757 write it out correctly. The ELF backend doesn't actually handle
1758 this at the moment, so we do it ourselves. We save the information
1762 elf_ecoff_set_ext (sym
, ext
)
1764 struct ecoff_extr
*ext
;
1766 symbol_get_bfdsym (sym
)->udata
.p
= (PTR
) ext
;
1769 /* This function is called by bfd_ecoff_debug_externals. It is
1770 supposed to *EXT to the external symbol information, and return
1771 whether the symbol should be used at all. */
1774 elf_get_extr (sym
, ext
)
1778 if (sym
->udata
.p
== NULL
)
1780 *ext
= *(EXTR
*) sym
->udata
.p
;
1784 /* This function is called by bfd_ecoff_debug_externals. It has
1785 nothing to do for ELF. */
1789 elf_set_index (sym
, indx
)
1790 asymbol
*sym ATTRIBUTE_UNUSED
;
1791 bfd_size_type indx ATTRIBUTE_UNUSED
;
1795 #endif /* NEED_ECOFF_DEBUG */
1798 elf_frob_symbol (symp
, puntp
)
1802 struct elf_obj_sy
*sy_obj
;
1804 #ifdef NEED_ECOFF_DEBUG
1805 if (ECOFF_DEBUGGING
)
1806 ecoff_frob_symbol (symp
);
1809 sy_obj
= symbol_get_obj (symp
);
1811 if (sy_obj
->size
!= NULL
)
1813 switch (sy_obj
->size
->X_op
)
1817 (S_GET_VALUE (sy_obj
->size
->X_add_symbol
)
1818 + sy_obj
->size
->X_add_number
1819 - S_GET_VALUE (sy_obj
->size
->X_op_symbol
)));
1823 (S_GET_VALUE (sy_obj
->size
->X_add_symbol
)
1824 + sy_obj
->size
->X_add_number
));
1827 as_bad (_(".size expression too complicated to fix up"));
1830 free (sy_obj
->size
);
1831 sy_obj
->size
= NULL
;
1834 if (sy_obj
->versioned_name
!= NULL
)
1838 p
= strchr (sy_obj
->versioned_name
, ELF_VER_CHR
);
1841 /* This symbol was given a new name with the .symver directive.
1843 If this is an external reference, just rename the symbol to
1844 include the version string. This will make the relocs be
1845 against the correct versioned symbol.
1847 If this is a definition, add an alias. FIXME: Using an alias
1848 will permit the debugging information to refer to the right
1849 symbol. However, it's not clear whether it is the best
1852 if (! S_IS_DEFINED (symp
))
1854 /* Verify that the name isn't using the @@ syntax--this is
1855 reserved for definitions of the default version to link
1857 if (p
[1] == ELF_VER_CHR
)
1859 as_bad (_("invalid attempt to declare external version name as default in symbol `%s'"),
1860 sy_obj
->versioned_name
);
1863 S_SET_NAME (symp
, sy_obj
->versioned_name
);
1867 if (p
[1] == ELF_VER_CHR
&& p
[2] == ELF_VER_CHR
)
1871 /* The @@@ syntax is a special case. It renames the
1872 symbol name to versioned_name with one `@' removed. */
1873 l
= strlen (&p
[3]) + 1;
1874 memmove (&p
[2], &p
[3], l
);
1875 S_SET_NAME (symp
, sy_obj
->versioned_name
);
1881 /* FIXME: Creating a new symbol here is risky. We're
1882 in the final loop over the symbol table. We can
1883 get away with it only because the symbol goes to
1884 the end of the list, where the loop will still see
1885 it. It would probably be better to do this in
1886 obj_frob_file_before_adjust. */
1888 symp2
= symbol_find_or_make (sy_obj
->versioned_name
);
1890 /* Now we act as though we saw symp2 = sym. */
1892 S_SET_SEGMENT (symp2
, S_GET_SEGMENT (symp
));
1894 /* Subtracting out the frag address here is a hack
1895 because we are in the middle of the final loop. */
1898 - symbol_get_frag (symp
)->fr_address
));
1900 symbol_set_frag (symp2
, symbol_get_frag (symp
));
1902 /* This will copy over the size information. */
1903 copy_symbol_attributes (symp2
, symp
);
1905 S_SET_OTHER (symp2
, S_GET_OTHER (symp
));
1907 if (S_IS_WEAK (symp
))
1910 if (S_IS_EXTERNAL (symp
))
1911 S_SET_EXTERNAL (symp2
);
1916 /* Double check weak symbols. */
1917 if (S_IS_WEAK (symp
))
1919 if (S_IS_COMMON (symp
))
1920 as_bad (_("symbol `%s' can not be both weak and common"),
1925 /* The Irix 5 and 6 assemblers set the type of any common symbol and
1926 any undefined non-function symbol to STT_OBJECT. We try to be
1927 compatible, since newer Irix 5 and 6 linkers care. However, we
1928 only set undefined symbols to be STT_OBJECT if we are on Irix,
1929 because that is the only time gcc will generate the necessary
1930 .global directives to mark functions. */
1932 if (S_IS_COMMON (symp
))
1933 symbol_get_bfdsym (symp
)->flags
|= BSF_OBJECT
;
1935 if (strstr (TARGET_OS
, "irix") != NULL
1936 && ! S_IS_DEFINED (symp
)
1937 && (symbol_get_bfdsym (symp
)->flags
& BSF_FUNCTION
) == 0)
1938 symbol_get_bfdsym (symp
)->flags
|= BSF_OBJECT
;
1942 /* If TC_PPC is defined, we used to force the type of a symbol to be
1943 BSF_OBJECT if it was otherwise unset. This was required by some
1944 version of VxWorks. Thomas de Lellis <tdel@windriver.com> says
1945 that this is no longer needed, so it is now commented out. */
1946 if ((symbol_get_bfdsym (symp
)->flags
1947 & (BSF_FUNCTION
| BSF_FILE
| BSF_SECTION_SYM
)) == 0
1948 && S_IS_DEFINED (symp
))
1949 symbol_get_bfdsym (symp
)->flags
|= BSF_OBJECT
;
1955 asection
**head
; /* Section lists. */
1956 unsigned int *elt_count
; /* Number of sections in each list. */
1957 unsigned int num_group
; /* Number of lists. */
1960 /* Called via bfd_map_over_sections. If SEC is a member of a group,
1961 add it to a list of sections belonging to the group. INF is a
1962 pointer to a struct group_list, which is where we store the head of
1966 build_group_lists (abfd
, sec
, inf
)
1967 bfd
*abfd ATTRIBUTE_UNUSED
;
1971 struct group_list
*list
= (struct group_list
*) inf
;
1972 const char *group_name
= elf_group_name (sec
);
1975 if (group_name
== NULL
)
1978 /* If this group already has a list, add the section to the head of
1980 for (i
= 0; i
< list
->num_group
; i
++)
1982 if (strcmp (group_name
, elf_group_name (list
->head
[i
])) == 0)
1984 elf_next_in_group (sec
) = list
->head
[i
];
1985 list
->head
[i
] = sec
;
1986 list
->elt_count
[i
] += 1;
1991 /* New group. Make the arrays bigger in chunks to minimize calls to
1993 i
= list
->num_group
;
1996 unsigned int newsize
= i
+ 128;
1997 list
->head
= xrealloc (list
->head
, newsize
* sizeof (*list
->head
));
1998 list
->elt_count
= xrealloc (list
->elt_count
,
1999 newsize
* sizeof (*list
->elt_count
));
2001 list
->head
[i
] = sec
;
2002 list
->elt_count
[i
] = 1;
2003 list
->num_group
+= 1;
2009 struct group_list list
;
2012 bfd_map_over_sections (stdoutput
, adjust_stab_sections
, (PTR
) 0);
2014 /* Go find section groups. */
2017 list
.elt_count
= NULL
;
2018 bfd_map_over_sections (stdoutput
, build_group_lists
, (PTR
) &list
);
2020 /* Make the SHT_GROUP sections that describe each section group. We
2021 can't set up the section contents here yet, because elf section
2022 indices have yet to be calculated. elf.c:set_group_contents does
2023 the rest of the work. */
2024 for (i
= 0; i
< list
.num_group
; i
++)
2026 const char *group_name
= elf_group_name (list
.head
[i
]);
2027 const char *sec_name
;
2033 flags
= SEC_READONLY
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
| SEC_GROUP
;
2034 for (s
= list
.head
[i
]; s
!= NULL
; s
= elf_next_in_group (s
))
2035 if (elf_linkonce_p (s
) != ((flags
& SEC_LINK_ONCE
) != 0))
2037 flags
|= SEC_LINK_ONCE
| SEC_LINK_DUPLICATES_DISCARD
;
2038 if (s
!= list
.head
[i
])
2040 as_warn (_("assuming all members of group `%s' are COMDAT"),
2046 sec_name
= group_name
;
2047 sy
= symbol_find_exact (group_name
);
2050 && (sy
== symbol_lastP
2051 || (sy
->sy_next
!= NULL
2052 && sy
->sy_next
->sy_previous
== sy
)))
2055 sec_name
= ".group";
2057 s
= subseg_force_new (sec_name
, 0);
2059 || !bfd_set_section_flags (stdoutput
, s
, flags
)
2060 || !bfd_set_section_alignment (stdoutput
, s
, 2))
2062 as_fatal (_("can't create group: %s"),
2063 bfd_errmsg (bfd_get_error ()));
2066 /* Pass a pointer to the first section in this group. */
2067 elf_next_in_group (s
) = list
.head
[i
];
2069 elf_group_id (s
) = sy
->bsym
;
2071 s
->_raw_size
= 4 * (list
.elt_count
[i
] + 1);
2072 s
->contents
= frag_more (s
->_raw_size
);
2073 frag_now
->fr_fix
= frag_now_fix_octets ();
2076 #ifdef elf_tc_final_processing
2077 elf_tc_final_processing ();
2081 /* It removes any unneeded versioned symbols from the symbol table. */
2084 elf_frob_file_before_adjust ()
2090 for (symp
= symbol_rootP
; symp
; symp
= symbol_next (symp
))
2091 if (!S_IS_DEFINED (symp
))
2093 if (symbol_get_obj (symp
)->versioned_name
)
2097 /* The @@@ syntax is a special case. If the symbol is
2098 not defined, 2 `@'s will be removed from the
2101 p
= strchr (symbol_get_obj (symp
)->versioned_name
,
2104 if (p
[1] == ELF_VER_CHR
&& p
[2] == ELF_VER_CHR
)
2106 size_t l
= strlen (&p
[3]) + 1;
2107 memmove (&p
[1], &p
[3], l
);
2109 if (symbol_used_p (symp
) == 0
2110 && symbol_used_in_reloc_p (symp
) == 0)
2111 symbol_remove (symp
, &symbol_rootP
, &symbol_lastP
);
2114 /* If there was .weak foo, but foo was neither defined nor
2115 used anywhere, remove it. */
2117 else if (S_IS_WEAK (symp
)
2118 && symbol_used_p (symp
) == 0
2119 && symbol_used_in_reloc_p (symp
) == 0)
2120 symbol_remove (symp
, &symbol_rootP
, &symbol_lastP
);
2125 /* It is required that we let write_relocs have the opportunity to
2126 optimize away fixups before output has begun, since it is possible
2127 to eliminate all fixups for a section and thus we never should
2128 have generated the relocation section. */
2131 elf_frob_file_after_relocs ()
2133 #ifdef NEED_ECOFF_DEBUG
2134 if (ECOFF_DEBUGGING
)
2135 /* Generate the ECOFF debugging information. */
2137 const struct ecoff_debug_swap
*debug_swap
;
2138 struct ecoff_debug_info debug
;
2143 = get_elf_backend_data (stdoutput
)->elf_backend_ecoff_debug_swap
;
2144 know (debug_swap
!= (const struct ecoff_debug_swap
*) NULL
);
2145 ecoff_build_debug (&debug
.symbolic_header
, &buf
, debug_swap
);
2147 /* Set up the pointers in debug. */
2148 #define SET(ptr, offset, type) \
2149 debug.ptr = (type) (buf + debug.symbolic_header.offset)
2151 SET (line
, cbLineOffset
, unsigned char *);
2152 SET (external_dnr
, cbDnOffset
, PTR
);
2153 SET (external_pdr
, cbPdOffset
, PTR
);
2154 SET (external_sym
, cbSymOffset
, PTR
);
2155 SET (external_opt
, cbOptOffset
, PTR
);
2156 SET (external_aux
, cbAuxOffset
, union aux_ext
*);
2157 SET (ss
, cbSsOffset
, char *);
2158 SET (external_fdr
, cbFdOffset
, PTR
);
2159 SET (external_rfd
, cbRfdOffset
, PTR
);
2160 /* ssext and external_ext are set up just below. */
2164 /* Set up the external symbols. */
2165 debug
.ssext
= debug
.ssext_end
= NULL
;
2166 debug
.external_ext
= debug
.external_ext_end
= NULL
;
2167 if (! bfd_ecoff_debug_externals (stdoutput
, &debug
, debug_swap
, TRUE
,
2168 elf_get_extr
, elf_set_index
))
2169 as_fatal (_("failed to set up debugging information: %s"),
2170 bfd_errmsg (bfd_get_error ()));
2172 sec
= bfd_get_section_by_name (stdoutput
, ".mdebug");
2173 assert (sec
!= NULL
);
2175 know (!stdoutput
->output_has_begun
);
2177 /* We set the size of the section, call bfd_set_section_contents
2178 to force the ELF backend to allocate a file position, and then
2179 write out the data. FIXME: Is this really the best way to do
2181 sec
->_raw_size
= bfd_ecoff_debug_size (stdoutput
, &debug
, debug_swap
);
2183 /* Pass BUF to bfd_set_section_contents because this will
2184 eventually become a call to fwrite, and ISO C prohibits
2185 passing a NULL pointer to a stdio function even if the
2186 pointer will not be used. */
2187 if (! bfd_set_section_contents (stdoutput
, sec
, (PTR
) buf
,
2188 (file_ptr
) 0, (bfd_size_type
) 0))
2189 as_fatal (_("can't start writing .mdebug section: %s"),
2190 bfd_errmsg (bfd_get_error ()));
2192 know (stdoutput
->output_has_begun
);
2193 know (sec
->filepos
!= 0);
2195 if (! bfd_ecoff_write_debug (stdoutput
, &debug
, debug_swap
,
2197 as_fatal (_("could not write .mdebug section: %s"),
2198 bfd_errmsg (bfd_get_error ()));
2200 #endif /* NEED_ECOFF_DEBUG */
2205 /* Heavily plagarized from obj_elf_version. The idea is to emit the
2206 SCO specific identifier in the .notes section to satisfy the SCO
2209 This looks more complicated than it really is. As opposed to the
2210 "obvious" solution, this should handle the cross dev cases
2211 correctly. (i.e, hosting on a 64 bit big endian processor, but
2212 generating SCO Elf code) Efficiency isn't a concern, as there
2213 should be exactly one of these sections per object module.
2215 SCO OpenServer 5 identifies it's ELF modules with a standard ELF
2218 int_32 namesz = 4 ; Name size
2219 int_32 descsz = 12 ; Descriptive information
2221 char name[4] = "SCO" ; Originator name ALWAYS SCO + NULL
2222 int_32 version = (major ver # << 16) | version of tools ;
2223 int_32 source = (tool_id << 16 ) | 1 ;
2224 int_32 info = 0 ; These are set by the SCO tools, but we
2225 don't know enough about the source
2226 environment to set them. SCO ld currently
2227 ignores them, and recommends we set them
2230 #define SCO_MAJOR_VERSION 0x1
2231 #define SCO_MINOR_VERSION 0x1
2241 asection
*seg
= now_seg
;
2242 subsegT subseg
= now_subseg
;
2243 Elf_Internal_Note i_note
;
2244 Elf_External_Note e_note
;
2245 asection
*note_secp
= (asection
*) NULL
;
2248 /* create the .note section */
2250 note_secp
= subseg_new (".note", 0);
2251 bfd_set_section_flags (stdoutput
,
2253 SEC_HAS_CONTENTS
| SEC_READONLY
);
2255 /* process the version string */
2258 i_note
.descsz
= 12; /* 12 descriptive bytes */
2259 i_note
.type
= NT_VERSION
; /* Contains a version string */
2261 p
= frag_more (sizeof (i_note
.namesz
));
2262 md_number_to_chars (p
, (valueT
) i_note
.namesz
, 4);
2264 p
= frag_more (sizeof (i_note
.descsz
));
2265 md_number_to_chars (p
, (valueT
) i_note
.descsz
, 4);
2267 p
= frag_more (sizeof (i_note
.type
));
2268 md_number_to_chars (p
, (valueT
) i_note
.type
, 4);
2273 /* Note: this is the version number of the ELF we're representing */
2275 md_number_to_chars (p
, (SCO_MAJOR_VERSION
<< 16) | (SCO_MINOR_VERSION
), 4);
2277 /* Here, we pick a magic number for ourselves (yes, I "registered"
2278 it with SCO. The bottom bit shows that we are compat with the
2281 md_number_to_chars (p
, 0x4c520000 | 0x0001, 4);
2283 /* If we knew (or cared) what the source language options were, we'd
2284 fill them in here. SCO has given us permission to ignore these
2285 and just set them to zero. */
2287 md_number_to_chars (p
, 0x0000, 4);
2289 frag_align (2, 0, 0);
2291 /* We probably can't restore the current segment, for there likely
2294 subseg_set (seg
, subseg
);
2298 #endif /* SCO_ELF */
2301 elf_separate_stab_sections ()
2303 #ifdef NEED_ECOFF_DEBUG
2304 return (!ECOFF_DEBUGGING
);
2311 elf_init_stab_section (seg
)
2314 #ifdef NEED_ECOFF_DEBUG
2315 if (!ECOFF_DEBUGGING
)
2317 obj_elf_init_stab_section (seg
);
2320 const struct format_ops elf_format_ops
=
2322 bfd_target_elf_flavour
,
2323 0, /* dfl_leading_underscore */
2324 1, /* emit_section_symbols */
2329 elf_frob_file_before_adjust
,
2330 0, /* obj_frob_file_before_fix */
2331 elf_frob_file_after_relocs
,
2332 elf_s_get_size
, elf_s_set_size
,
2333 elf_s_get_align
, elf_s_set_align
,
2340 elf_copy_symbol_attributes
,
2341 #ifdef NEED_ECOFF_DEBUG
2342 ecoff_generate_asm_lineno
,
2345 0, /* generate_asm_lineno */
2346 0, /* process_stab */
2348 elf_separate_stab_sections
,
2349 elf_init_stab_section
,
2350 elf_sec_sym_ok_for_reloc
,
2352 #ifdef NEED_ECOFF_DEBUG
2355 0, /* ecoff_set_ext */
2357 elf_obj_read_begin_hook
,
2358 elf_obj_symbol_new_hook