1 /* ELF object file format
2 Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
3 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"
28 #ifndef ECOFF_DEBUGGING
29 #define ECOFF_DEBUGGING 0
31 #define NEED_ECOFF_DEBUG
34 #ifdef NEED_ECOFF_DEBUG
39 #include "elf/alpha.h"
54 static bfd_vma elf_s_get_size
PARAMS ((symbolS
*));
55 static void elf_s_set_size
PARAMS ((symbolS
*, bfd_vma
));
56 static bfd_vma elf_s_get_align
PARAMS ((symbolS
*));
57 static void elf_s_set_align
PARAMS ((symbolS
*, bfd_vma
));
58 static void elf_s_set_other
PARAMS ((symbolS
*, int));
59 static int elf_sec_sym_ok_for_reloc
PARAMS ((asection
*));
60 static void adjust_stab_sections
PARAMS ((bfd
*, asection
*, PTR
));
61 static void build_group_lists
PARAMS ((bfd
*, asection
*, PTR
));
62 static int elf_separate_stab_sections
PARAMS ((void));
63 static void elf_init_stab_section
PARAMS ((segT
));
65 #ifdef NEED_ECOFF_DEBUG
66 static boolean elf_get_extr
PARAMS ((asymbol
*, EXTR
*));
67 static void elf_set_index
PARAMS ((asymbol
*, bfd_size_type
));
70 static void obj_elf_line
PARAMS ((int));
71 void obj_elf_version
PARAMS ((int));
72 static void obj_elf_size
PARAMS ((int));
73 static void obj_elf_type
PARAMS ((int));
74 static void obj_elf_ident
PARAMS ((int));
75 static void obj_elf_weak
PARAMS ((int));
76 static void obj_elf_local
PARAMS ((int));
77 static void obj_elf_visibility
PARAMS ((int));
78 static void obj_elf_change_section
79 PARAMS ((const char *, int, int, int, const char *, 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));
88 static const pseudo_typeS elf_pseudo_table
[] =
90 {"comm", obj_elf_common
, 0},
91 {"common", obj_elf_common
, 1},
92 {"ident", obj_elf_ident
, 0},
93 {"local", obj_elf_local
, 0},
94 {"previous", obj_elf_previous
, 0},
95 {"section", obj_elf_section
, 0},
96 {"section.s", obj_elf_section
, 0},
97 {"sect", obj_elf_section
, 0},
98 {"sect.s", obj_elf_section
, 0},
99 {"pushsection", obj_elf_section
, 1},
100 {"popsection", obj_elf_popsection
, 0},
101 {"size", obj_elf_size
, 0},
102 {"type", obj_elf_type
, 0},
103 {"version", obj_elf_version
, 0},
104 {"weak", obj_elf_weak
, 0},
106 /* These define symbol visibility. */
107 {"internal", obj_elf_visibility
, STV_INTERNAL
},
108 {"hidden", obj_elf_visibility
, STV_HIDDEN
},
109 {"protected", obj_elf_visibility
, STV_PROTECTED
},
111 /* These are used for stabs-in-elf configurations. */
112 {"line", obj_elf_line
, 0},
114 /* This is a GNU extension to handle symbol versions. */
115 {"symver", obj_elf_symver
, 0},
117 /* A GNU extension to change subsection only. */
118 {"subsection", obj_elf_subsection
, 0},
120 /* These are GNU extensions to aid in garbage collecting C++ vtables. */
121 {"vtable_inherit", (void (*) PARAMS ((int))) &obj_elf_vtable_inherit
, 0},
122 {"vtable_entry", (void (*) PARAMS ((int))) &obj_elf_vtable_entry
, 0},
124 /* These are used for dwarf. */
129 /* We need to trap the section changing calls to handle .previous. */
130 {"data", obj_elf_data
, 0},
131 {"text", obj_elf_text
, 0},
137 static const pseudo_typeS ecoff_debug_pseudo_table
[] =
139 #ifdef NEED_ECOFF_DEBUG
140 /* COFF style debugging information for ECOFF. .ln is not used; .loc
142 { "def", ecoff_directive_def
, 0 },
143 { "dim", ecoff_directive_dim
, 0 },
144 { "endef", ecoff_directive_endef
, 0 },
145 { "file", ecoff_directive_file
, 0 },
146 { "scl", ecoff_directive_scl
, 0 },
147 { "tag", ecoff_directive_tag
, 0 },
148 { "val", ecoff_directive_val
, 0 },
150 /* COFF debugging requires pseudo-ops .size and .type, but ELF
151 already has meanings for those. We use .esize and .etype
152 instead. These are only generated by gcc anyhow. */
153 { "esize", ecoff_directive_size
, 0 },
154 { "etype", ecoff_directive_type
, 0 },
156 /* ECOFF specific debugging information. */
157 { "begin", ecoff_directive_begin
, 0 },
158 { "bend", ecoff_directive_bend
, 0 },
159 { "end", ecoff_directive_end
, 0 },
160 { "ent", ecoff_directive_ent
, 0 },
161 { "fmask", ecoff_directive_fmask
, 0 },
162 { "frame", ecoff_directive_frame
, 0 },
163 { "loc", ecoff_directive_loc
, 0 },
164 { "mask", ecoff_directive_mask
, 0 },
166 /* Other ECOFF directives. */
167 { "extern", ecoff_directive_extern
, 0 },
169 /* These are used on Irix. I don't know how to implement them. */
170 { "alias", s_ignore
, 0 },
171 { "bgnb", s_ignore
, 0 },
172 { "endb", s_ignore
, 0 },
173 { "lab", s_ignore
, 0 },
174 { "noalias", s_ignore
, 0 },
175 { "verstamp", s_ignore
, 0 },
176 { "vreg", s_ignore
, 0 },
179 {NULL
, NULL
, 0} /* end sentinel */
183 #include "aout/aout64.h"
185 /* This is called when the assembler starts. */
190 /* Add symbols for the known sections to the symbol table. */
191 symbol_table_insert (section_symbol (bfd_get_section_by_name (stdoutput
,
192 TEXT_SECTION_NAME
)));
193 symbol_table_insert (section_symbol (bfd_get_section_by_name (stdoutput
,
194 DATA_SECTION_NAME
)));
195 symbol_table_insert (section_symbol (bfd_get_section_by_name (stdoutput
,
202 pop_insert (elf_pseudo_table
);
204 pop_insert (ecoff_debug_pseudo_table
);
211 return S_GET_SIZE (sym
);
215 elf_s_set_size (sym
, sz
)
219 S_SET_SIZE (sym
, sz
);
223 elf_s_get_align (sym
)
226 return S_GET_ALIGN (sym
);
230 elf_s_set_align (sym
, align
)
234 S_SET_ALIGN (sym
, align
);
238 elf_s_get_other (sym
)
241 return elf_symbol (symbol_get_bfdsym (sym
))->internal_elf_sym
.st_other
;
245 elf_s_set_other (sym
, other
)
249 S_SET_OTHER (sym
, other
);
253 elf_sec_sym_ok_for_reloc (sec
)
256 return obj_sec_sym_ok_for_reloc (sec
);
265 sym
= symbol_new (s
, absolute_section
, (valueT
) 0, (struct frag
*) 0);
266 symbol_set_frag (sym
, &zero_address_frag
);
267 symbol_get_bfdsym (sym
)->flags
|= BSF_FILE
;
269 if (symbol_rootP
!= sym
)
271 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
272 symbol_insert (sym
, symbol_rootP
, &symbol_rootP
, &symbol_lastP
);
274 verify_symbol_chain (symbol_rootP
, symbol_lastP
);
278 #ifdef NEED_ECOFF_DEBUG
284 obj_elf_common (is_common
)
294 if (flag_mri
&& is_common
)
300 name
= input_line_pointer
;
301 c
= get_symbol_end ();
302 /* just after name is now '\0' */
303 p
= input_line_pointer
;
306 if (*input_line_pointer
!= ',')
308 as_bad (_("expected comma after symbol-name"));
309 ignore_rest_of_line ();
312 input_line_pointer
++; /* skip ',' */
313 if ((temp
= get_absolute_expression ()) < 0)
315 as_bad (_(".COMMon length (%d.) <0! Ignored."), temp
);
316 ignore_rest_of_line ();
321 symbolP
= symbol_find_or_make (name
);
323 if (S_IS_DEFINED (symbolP
) && ! S_IS_COMMON (symbolP
))
325 as_bad (_("symbol `%s' is already defined"), S_GET_NAME (symbolP
));
326 ignore_rest_of_line ();
329 if (S_GET_VALUE (symbolP
) != 0)
331 if (S_GET_VALUE (symbolP
) != (valueT
) size
)
333 as_warn (_("length of .comm \"%s\" is already %ld; not changed to %d"),
334 S_GET_NAME (symbolP
), (long) S_GET_VALUE (symbolP
), size
);
337 know (symbolP
->sy_frag
== &zero_address_frag
);
338 if (*input_line_pointer
!= ',')
343 input_line_pointer
++;
346 if (! have_align
|| *input_line_pointer
!= '"')
352 temp
= get_absolute_expression ();
356 as_warn (_("common alignment negative; 0 assumed"));
359 if (symbol_get_obj (symbolP
)->local
)
368 old_subsec
= now_subseg
;
371 /* convert to a power of 2 alignment */
372 for (align
= 0; (temp
& 1) == 0; temp
>>= 1, ++align
);
375 as_bad (_("common alignment not a power of 2"));
376 ignore_rest_of_line ();
382 record_alignment (bss_section
, align
);
383 subseg_set (bss_section
, 0);
385 frag_align (align
, 0, 0);
386 if (S_GET_SEGMENT (symbolP
) == bss_section
)
387 symbol_get_frag (symbolP
)->fr_symbol
= 0;
388 symbol_set_frag (symbolP
, frag_now
);
389 pfrag
= frag_var (rs_org
, 1, 1, (relax_substateT
) 0, symbolP
,
390 (offsetT
) size
, (char *) 0);
392 S_SET_SIZE (symbolP
, size
);
393 S_SET_SEGMENT (symbolP
, bss_section
);
394 S_CLEAR_EXTERNAL (symbolP
);
395 subseg_set (old_sec
, old_subsec
);
400 S_SET_VALUE (symbolP
, (valueT
) size
);
401 S_SET_ALIGN (symbolP
, temp
);
402 S_SET_EXTERNAL (symbolP
);
403 S_SET_SEGMENT (symbolP
, bfd_com_section_ptr
);
408 input_line_pointer
++;
409 /* @@ Some use the dot, some don't. Can we get some consistency?? */
410 if (*input_line_pointer
== '.')
411 input_line_pointer
++;
412 /* @@ Some say data, some say bss. */
413 if (strncmp (input_line_pointer
, "bss\"", 4)
414 && strncmp (input_line_pointer
, "data\"", 5))
416 while (*--input_line_pointer
!= '"')
418 input_line_pointer
--;
419 goto bad_common_segment
;
421 while (*input_line_pointer
++ != '"')
423 goto allocate_common
;
426 symbol_get_bfdsym (symbolP
)->flags
|= BSF_OBJECT
;
428 demand_empty_rest_of_line ();
433 p
= input_line_pointer
;
434 while (*p
&& *p
!= '\n')
438 as_bad (_("bad .common segment %s"), input_line_pointer
+ 1);
440 input_line_pointer
= p
;
441 ignore_rest_of_line ();
447 obj_elf_local (ignore
)
448 int ignore ATTRIBUTE_UNUSED
;
456 name
= input_line_pointer
;
457 c
= get_symbol_end ();
458 symbolP
= symbol_find_or_make (name
);
459 *input_line_pointer
= c
;
461 S_CLEAR_EXTERNAL (symbolP
);
462 symbol_get_obj (symbolP
)->local
= 1;
465 input_line_pointer
++;
467 if (*input_line_pointer
== '\n')
472 demand_empty_rest_of_line ();
476 obj_elf_weak (ignore
)
477 int ignore ATTRIBUTE_UNUSED
;
485 name
= input_line_pointer
;
486 c
= get_symbol_end ();
487 symbolP
= symbol_find_or_make (name
);
488 *input_line_pointer
= c
;
490 S_SET_WEAK (symbolP
);
491 symbol_get_obj (symbolP
)->local
= 1;
494 input_line_pointer
++;
496 if (*input_line_pointer
== '\n')
501 demand_empty_rest_of_line ();
505 obj_elf_visibility (visibility
)
512 elf_symbol_type
*elfsym
;
516 name
= input_line_pointer
;
517 c
= get_symbol_end ();
518 symbolP
= symbol_find_or_make (name
);
519 *input_line_pointer
= c
;
523 bfdsym
= symbol_get_bfdsym (symbolP
);
524 elfsym
= elf_symbol_from (bfd_asymbol_bfd (bfdsym
), bfdsym
);
528 elfsym
->internal_elf_sym
.st_other
= visibility
;
532 input_line_pointer
++;
536 if (*input_line_pointer
== '\n')
542 demand_empty_rest_of_line ();
545 static segT previous_section
;
546 static int previous_subsection
;
550 struct section_stack
*next
;
552 int subseg
, prev_subseg
;
555 static struct section_stack
*section_stack
;
557 /* Handle the .section pseudo-op. This code supports two different
560 The first is found on Solaris, and looks like
561 .section ".sec1",#alloc,#execinstr,#write
562 Here the names after '#' are the SHF_* flags to turn on for the
563 section. I'm not sure how it determines the SHT_* type (BFD
564 doesn't really give us control over the type, anyhow).
566 The second format is found on UnixWare, and probably most SVR4
567 machines, and looks like
568 .section .sec1,"a",@progbits
569 The quoted string may contain any combination of a, w, x, and
570 represents the SHF_* flags to turn on for the section. The string
571 beginning with '@' can be progbits or nobits. There should be
572 other possibilities, but I don't know what they are. In any case,
573 BFD doesn't really let us set the section type. */
575 /* Certain named sections have particular defined types, listed on p.
577 struct special_section
584 static struct special_section
const special_sections
[] =
586 { ".bss", SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
},
587 { ".comment", SHT_PROGBITS
, 0 },
588 { ".data", SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
589 { ".data1", SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
590 { ".debug", SHT_PROGBITS
, 0 },
591 { ".fini", SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
592 { ".init", SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
593 { ".line", SHT_PROGBITS
, 0 },
594 { ".note", SHT_NOTE
, 0 },
595 { ".rodata", SHT_PROGBITS
, SHF_ALLOC
},
596 { ".rodata1", SHT_PROGBITS
, SHF_ALLOC
},
597 { ".text", SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
599 #ifdef ELF_TC_SPECIAL_SECTIONS
600 ELF_TC_SPECIAL_SECTIONS
604 /* The following section names are special, but they can not
605 reasonably appear in assembler code. Some of the attributes are
606 processor dependent. */
607 { ".dynamic", SHT_DYNAMIC
, SHF_ALLOC
/* + SHF_WRITE */ },
608 { ".dynstr", SHT_STRTAB
, SHF_ALLOC
},
609 { ".dynsym", SHT_DYNSYM
, SHF_ALLOC
},
610 { ".got", SHT_PROGBITS
, 0 },
611 { ".hash", SHT_HASH
, SHF_ALLOC
},
612 { ".interp", SHT_PROGBITS
, /* SHF_ALLOC */ },
613 { ".plt", SHT_PROGBITS
, 0 },
614 { ".shstrtab",SHT_STRTAB
, 0 },
615 { ".strtab", SHT_STRTAB
, /* SHF_ALLOC */ },
616 { ".symtab", SHT_SYMTAB
, /* SHF_ALLOC */ },
623 obj_elf_change_section (name
, type
, attr
, entsize
, group_name
, push
)
628 const char *group_name
;
636 #ifdef md_flush_pending_output
637 md_flush_pending_output ();
640 /* Switch to the section, creating it if necessary. */
643 struct section_stack
*elt
;
644 elt
= xmalloc (sizeof (struct section_stack
));
645 elt
->next
= section_stack
;
647 elt
->prev_seg
= previous_section
;
648 elt
->subseg
= now_subseg
;
649 elt
->prev_subseg
= previous_subsection
;
652 previous_section
= now_seg
;
653 previous_subsection
= now_subseg
;
655 old_sec
= bfd_get_section_by_name (stdoutput
, name
);
656 sec
= subseg_new (name
, 0);
658 /* See if this is one of the special sections. */
659 for (i
= 0; special_sections
[i
].name
!= NULL
; i
++)
660 if (strcmp (name
, special_sections
[i
].name
) == 0)
662 if (type
== SHT_NULL
)
663 type
= special_sections
[i
].type
;
664 else if (type
!= special_sections
[i
].type
)
668 as_warn (_("setting incorrect section type for %s"), name
);
672 as_warn (_("ignoring incorrect section type for %s"), name
);
673 type
= special_sections
[i
].type
;
676 if ((attr
&~ special_sections
[i
].attributes
) != 0
679 /* As a GNU extension, we permit a .note section to be
680 allocatable. If the linker sees an allocateable .note
681 section, it will create a PT_NOTE segment in the output
683 if (strcmp (name
, ".note") != 0
684 || attr
!= SHF_ALLOC
)
685 as_warn (_("setting incorrect section attributes for %s"),
688 attr
|= special_sections
[i
].attributes
;
692 /* Convert ELF type and flags to BFD flags. */
694 | ((attr
& SHF_WRITE
) ? 0 : SEC_READONLY
)
695 | ((attr
& SHF_ALLOC
) ? SEC_ALLOC
: 0)
696 | (((attr
& SHF_ALLOC
) && type
!= SHT_NOBITS
) ? SEC_LOAD
: 0)
697 | ((attr
& SHF_EXECINSTR
) ? SEC_CODE
: 0)
698 | ((attr
& SHF_MERGE
) ? SEC_MERGE
: 0)
699 | ((attr
& SHF_STRINGS
) ? SEC_STRINGS
: 0));
700 #ifdef md_elf_section_flags
701 flags
= md_elf_section_flags (flags
, attr
, type
);
708 /* Prevent SEC_HAS_CONTENTS from being inadvertently set. */
709 if (type
== SHT_NOBITS
)
710 seg_info (sec
)->bss
= 1;
712 bfd_set_section_flags (stdoutput
, sec
, flags
);
713 if (flags
& SEC_MERGE
)
714 sec
->entsize
= entsize
;
715 elf_group_name (sec
) = group_name
;
717 /* Add a symbol for this section to the symbol table. */
718 secsym
= symbol_find (name
);
720 symbol_set_bfdsym (secsym
, sec
->symbol
);
722 symbol_table_insert (section_symbol (sec
));
726 /* If section attributes are specified the second time we see a
727 particular section, then check that they are the same as we
728 saw the first time. */
729 if ((old_sec
->flags
^ flags
)
730 & (SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
| SEC_CODE
731 | SEC_EXCLUDE
| SEC_SORT_ENTRIES
| SEC_MERGE
| SEC_STRINGS
))
732 as_warn (_("ignoring changed section attributes for %s"), name
);
733 else if ((flags
& SEC_MERGE
) && old_sec
->entsize
!= (unsigned) entsize
)
734 as_warn (_("ignoring changed section entity size for %s"), name
);
735 else if ((attr
& SHF_GROUP
) != 0
736 && strcmp (elf_group_name (old_sec
), group_name
) != 0)
737 as_warn (_("ignoring new section group for %s"), name
);
740 #ifdef md_elf_section_change_hook
741 md_elf_section_change_hook ();
746 obj_elf_parse_section_letters (str
, len
)
763 attr
|= SHF_EXECINSTR
;
776 if (*(str
- 1) == 'a')
779 if (len
> 1 && str
[1] == 's')
788 char *bad_msg
= _("unrecognized .section attribute: want a,w,x,M,S,G");
789 #ifdef md_elf_section_letter
790 int md_attr
= md_elf_section_letter (*str
, &bad_msg
);
796 as_warn ("%s", bad_msg
);
809 obj_elf_section_word (str
, len
)
813 if (len
== 5 && strncmp (str
, "write", 5) == 0)
815 if (len
== 5 && strncmp (str
, "alloc", 5) == 0)
817 if (len
== 9 && strncmp (str
, "execinstr", 9) == 0)
818 return SHF_EXECINSTR
;
820 #ifdef md_elf_section_word
822 int md_attr
= md_elf_section_word (str
, len
);
828 as_warn (_("unrecognized section attribute"));
833 obj_elf_section_type (str
, len
)
837 if (len
== 8 && strncmp (str
, "progbits", 8) == 0)
839 if (len
== 6 && strncmp (str
, "nobits", 6) == 0)
842 #ifdef md_elf_section_type
844 int md_type
= md_elf_section_type (str
, len
);
850 as_warn (_("unrecognized section type"));
854 /* Get name of section. */
856 obj_elf_section_name ()
861 if (*input_line_pointer
== '"')
865 name
= demand_copy_C_string (&dummy
);
868 ignore_rest_of_line ();
874 char *end
= input_line_pointer
;
876 while (0 == strchr ("\n\t,; ", *end
))
878 if (end
== input_line_pointer
)
880 as_warn (_("missing name"));
881 ignore_rest_of_line ();
885 name
= xmalloc (end
- input_line_pointer
+ 1);
886 memcpy (name
, input_line_pointer
, end
- input_line_pointer
);
887 name
[end
- input_line_pointer
] = '\0';
888 input_line_pointer
= end
;
895 obj_elf_section (push
)
898 char *name
, *group_name
, *beg
;
899 int type
, attr
, dummy
;
907 #ifdef md_flush_pending_output
908 md_flush_pending_output ();
911 previous_section
= now_seg
;
912 previous_subsection
= now_subseg
;
914 s_mri_sect (&mri_type
);
916 #ifdef md_elf_section_change_hook
917 md_elf_section_change_hook ();
922 #endif /* ! defined (TC_I370) */
924 name
= obj_elf_section_name ();
932 if (*input_line_pointer
== ',')
934 /* Skip the comma. */
935 ++input_line_pointer
;
938 if (*input_line_pointer
== '"')
940 beg
= demand_copy_C_string (&dummy
);
943 ignore_rest_of_line ();
946 attr
|= obj_elf_parse_section_letters (beg
, strlen (beg
));
949 if (*input_line_pointer
== ',')
952 char *save
= input_line_pointer
;
954 ++input_line_pointer
;
956 c
= *input_line_pointer
;
959 beg
= demand_copy_C_string (&dummy
);
962 ignore_rest_of_line ();
965 type
= obj_elf_section_type (beg
, strlen (beg
));
967 else if (c
== '@' || c
== '%')
969 beg
= ++input_line_pointer
;
970 c
= get_symbol_end ();
971 *input_line_pointer
= c
;
972 type
= obj_elf_section_type (beg
, input_line_pointer
- beg
);
975 input_line_pointer
= save
;
979 if ((attr
& SHF_MERGE
) != 0 && *input_line_pointer
== ',')
981 ++input_line_pointer
;
983 entsize
= get_absolute_expression ();
987 as_warn (_("invalid merge entity size"));
992 else if ((attr
& SHF_MERGE
) != 0)
994 as_warn (_("entity size for SHF_MERGE not specified"));
998 if ((attr
& SHF_GROUP
) != 0 && *input_line_pointer
== ',')
1000 ++input_line_pointer
;
1001 group_name
= obj_elf_section_name ();
1002 if (group_name
== NULL
)
1005 else if ((attr
& SHF_GROUP
) != 0)
1007 as_warn (_("group name for SHF_GROUP not specified"));
1018 if (*input_line_pointer
!= '#')
1020 as_warn (_("character following name is not '#'"));
1021 ignore_rest_of_line ();
1024 beg
= ++input_line_pointer
;
1025 c
= get_symbol_end ();
1026 *input_line_pointer
= c
;
1028 attr
|= obj_elf_section_word (beg
, input_line_pointer
- beg
);
1032 while (*input_line_pointer
++ == ',');
1033 --input_line_pointer
;
1037 demand_empty_rest_of_line ();
1039 obj_elf_change_section (name
, type
, attr
, entsize
, group_name
, push
);
1042 /* Change to the .data section. */
1048 #ifdef md_flush_pending_output
1049 md_flush_pending_output ();
1052 previous_section
= now_seg
;
1053 previous_subsection
= now_subseg
;
1056 #ifdef md_elf_section_change_hook
1057 md_elf_section_change_hook ();
1061 /* Change to the .text section. */
1067 #ifdef md_flush_pending_output
1068 md_flush_pending_output ();
1071 previous_section
= now_seg
;
1072 previous_subsection
= now_subseg
;
1075 #ifdef md_elf_section_change_hook
1076 md_elf_section_change_hook ();
1081 obj_elf_subsection (ignore
)
1082 int ignore ATTRIBUTE_UNUSED
;
1086 #ifdef md_flush_pending_output
1087 md_flush_pending_output ();
1090 previous_section
= now_seg
;
1091 previous_subsection
= now_subseg
;
1093 temp
= get_absolute_expression ();
1094 subseg_set (now_seg
, (subsegT
) temp
);
1095 demand_empty_rest_of_line ();
1097 #ifdef md_elf_section_change_hook
1098 md_elf_section_change_hook ();
1102 /* This can be called from the processor backends if they change
1106 obj_elf_section_change_hook ()
1108 previous_section
= now_seg
;
1109 previous_subsection
= now_subseg
;
1113 obj_elf_previous (ignore
)
1114 int ignore ATTRIBUTE_UNUSED
;
1119 if (previous_section
== 0)
1121 as_warn (_(".previous without corresponding .section; ignored"));
1125 #ifdef md_flush_pending_output
1126 md_flush_pending_output ();
1129 new_section
= previous_section
;
1130 new_subsection
= previous_subsection
;
1131 previous_section
= now_seg
;
1132 previous_subsection
= now_subseg
;
1133 subseg_set (new_section
, new_subsection
);
1135 #ifdef md_elf_section_change_hook
1136 md_elf_section_change_hook ();
1141 obj_elf_popsection (xxx
)
1142 int xxx ATTRIBUTE_UNUSED
;
1144 struct section_stack
*top
= section_stack
;
1148 as_warn (_(".popsection without corresponding .pushsection; ignored"));
1152 #ifdef md_flush_pending_output
1153 md_flush_pending_output ();
1156 section_stack
= top
->next
;
1157 previous_section
= top
->prev_seg
;
1158 previous_subsection
= top
->prev_subseg
;
1159 subseg_set (top
->seg
, top
->subseg
);
1162 #ifdef md_elf_section_change_hook
1163 md_elf_section_change_hook ();
1168 obj_elf_line (ignore
)
1169 int ignore ATTRIBUTE_UNUSED
;
1171 /* Assume delimiter is part of expression. BSD4.2 as fails with
1172 delightful bug, so we are not being incompatible here. */
1173 new_logical_line ((char *) NULL
, (int) (get_absolute_expression ()));
1174 demand_empty_rest_of_line ();
1177 /* This handles the .symver pseudo-op, which is used to specify a
1178 symbol version. The syntax is ``.symver NAME,SYMVERNAME''.
1179 SYMVERNAME may contain ELF_VER_CHR ('@') characters. This
1180 pseudo-op causes the assembler to emit a symbol named SYMVERNAME
1181 with the same value as the symbol NAME. */
1184 obj_elf_symver (ignore
)
1185 int ignore ATTRIBUTE_UNUSED
;
1192 name
= input_line_pointer
;
1193 c
= get_symbol_end ();
1195 sym
= symbol_find_or_make (name
);
1197 *input_line_pointer
= c
;
1200 if (*input_line_pointer
!= ',')
1202 as_bad (_("expected comma after name in .symver"));
1203 ignore_rest_of_line ();
1207 ++input_line_pointer
;
1208 name
= input_line_pointer
;
1210 /* Temporarily include '@' in symbol names. */
1211 old_lexat
= lex_type
[(unsigned char) '@'];
1212 lex_type
[(unsigned char) '@'] |= LEX_NAME
;
1213 c
= get_symbol_end ();
1214 lex_type
[(unsigned char) '@'] = old_lexat
;
1216 if (symbol_get_obj (sym
)->versioned_name
== NULL
)
1218 symbol_get_obj (sym
)->versioned_name
= xstrdup (name
);
1220 *input_line_pointer
= c
;
1222 if (strchr (symbol_get_obj (sym
)->versioned_name
,
1223 ELF_VER_CHR
) == NULL
)
1225 as_bad (_("missing version name in `%s' for symbol `%s'"),
1226 symbol_get_obj (sym
)->versioned_name
,
1228 ignore_rest_of_line ();
1234 if (strcmp (symbol_get_obj (sym
)->versioned_name
, name
))
1236 as_bad (_("multiple versions [`%s'|`%s'] for symbol `%s'"),
1237 name
, symbol_get_obj (sym
)->versioned_name
,
1239 ignore_rest_of_line ();
1243 *input_line_pointer
= c
;
1246 demand_empty_rest_of_line ();
1249 /* This handles the .vtable_inherit pseudo-op, which is used to indicate
1250 to the linker the hierarchy in which a particular table resides. The
1251 syntax is ".vtable_inherit CHILDNAME, PARENTNAME". */
1254 obj_elf_vtable_inherit (ignore
)
1255 int ignore ATTRIBUTE_UNUSED
;
1257 char *cname
, *pname
;
1258 symbolS
*csym
, *psym
;
1261 if (*input_line_pointer
== '#')
1262 ++input_line_pointer
;
1264 cname
= input_line_pointer
;
1265 c
= get_symbol_end ();
1266 csym
= symbol_find (cname
);
1268 /* GCFIXME: should check that we don't have two .vtable_inherits for
1269 the same child symbol. Also, we can currently only do this if the
1270 child symbol is already exists and is placed in a fragment. */
1272 if (csym
== NULL
|| symbol_get_frag (csym
) == NULL
)
1274 as_bad ("expected `%s' to have already been set for .vtable_inherit",
1279 *input_line_pointer
= c
;
1282 if (*input_line_pointer
!= ',')
1284 as_bad ("expected comma after name in .vtable_inherit");
1285 ignore_rest_of_line ();
1289 ++input_line_pointer
;
1292 if (*input_line_pointer
== '#')
1293 ++input_line_pointer
;
1295 if (input_line_pointer
[0] == '0'
1296 && (input_line_pointer
[1] == '\0'
1297 || ISSPACE (input_line_pointer
[1])))
1299 psym
= section_symbol (absolute_section
);
1300 ++input_line_pointer
;
1304 pname
= input_line_pointer
;
1305 c
= get_symbol_end ();
1306 psym
= symbol_find_or_make (pname
);
1307 *input_line_pointer
= c
;
1310 demand_empty_rest_of_line ();
1315 assert (symbol_get_value_expression (csym
)->X_op
== O_constant
);
1316 return fix_new (symbol_get_frag (csym
),
1317 symbol_get_value_expression (csym
)->X_add_number
,
1318 0, psym
, 0, 0, BFD_RELOC_VTABLE_INHERIT
);
1321 /* This handles the .vtable_entry pseudo-op, which is used to indicate
1322 to the linker that a vtable slot was used. The syntax is
1323 ".vtable_entry tablename, offset". */
1326 obj_elf_vtable_entry (ignore
)
1327 int ignore ATTRIBUTE_UNUSED
;
1334 if (*input_line_pointer
== '#')
1335 ++input_line_pointer
;
1337 name
= input_line_pointer
;
1338 c
= get_symbol_end ();
1339 sym
= symbol_find_or_make (name
);
1340 *input_line_pointer
= c
;
1343 if (*input_line_pointer
!= ',')
1345 as_bad ("expected comma after name in .vtable_entry");
1346 ignore_rest_of_line ();
1350 ++input_line_pointer
;
1351 if (*input_line_pointer
== '#')
1352 ++input_line_pointer
;
1354 offset
= get_absolute_expression ();
1356 demand_empty_rest_of_line ();
1358 return fix_new (frag_now
, frag_now_fix (), 0, sym
, offset
, 0,
1359 BFD_RELOC_VTABLE_ENTRY
);
1363 elf_obj_read_begin_hook ()
1365 #ifdef NEED_ECOFF_DEBUG
1366 if (ECOFF_DEBUGGING
)
1367 ecoff_read_begin_hook ();
1372 elf_obj_symbol_new_hook (symbolP
)
1375 struct elf_obj_sy
*sy_obj
;
1377 sy_obj
= symbol_get_obj (symbolP
);
1378 sy_obj
->size
= NULL
;
1379 sy_obj
->versioned_name
= NULL
;
1381 #ifdef NEED_ECOFF_DEBUG
1382 if (ECOFF_DEBUGGING
)
1383 ecoff_symbol_new_hook (symbolP
);
1387 /* When setting one symbol equal to another, by default we probably
1388 want them to have the same "size", whatever it means in the current
1392 elf_copy_symbol_attributes (dest
, src
)
1393 symbolS
*dest
, *src
;
1395 struct elf_obj_sy
*srcelf
= symbol_get_obj (src
);
1396 struct elf_obj_sy
*destelf
= symbol_get_obj (dest
);
1399 if (destelf
->size
== NULL
)
1401 (expressionS
*) xmalloc (sizeof (expressionS
));
1402 *destelf
->size
= *srcelf
->size
;
1406 if (destelf
->size
!= NULL
)
1407 free (destelf
->size
);
1408 destelf
->size
= NULL
;
1410 S_SET_SIZE (dest
, S_GET_SIZE (src
));
1411 S_SET_OTHER (dest
, S_GET_OTHER (src
));
1415 obj_elf_version (ignore
)
1416 int ignore ATTRIBUTE_UNUSED
;
1421 asection
*seg
= now_seg
;
1422 subsegT subseg
= now_subseg
;
1423 Elf_Internal_Note i_note
;
1424 Elf_External_Note e_note
;
1425 asection
*note_secp
= (asection
*) NULL
;
1429 if (*input_line_pointer
== '\"')
1431 ++input_line_pointer
; /* -> 1st char of string. */
1432 name
= input_line_pointer
;
1434 while (is_a_char (c
= next_char_of_string ()))
1436 c
= *input_line_pointer
;
1437 *input_line_pointer
= '\0';
1438 *(input_line_pointer
- 1) = '\0';
1439 *input_line_pointer
= c
;
1441 /* create the .note section */
1443 note_secp
= subseg_new (".note", 0);
1444 bfd_set_section_flags (stdoutput
,
1446 SEC_HAS_CONTENTS
| SEC_READONLY
);
1448 /* process the version string */
1450 len
= strlen (name
);
1452 i_note
.namesz
= ((len
+ 1) + 3) & ~3; /* round this to word boundary */
1453 i_note
.descsz
= 0; /* no description */
1454 i_note
.type
= NT_VERSION
;
1455 p
= frag_more (sizeof (e_note
.namesz
));
1456 md_number_to_chars (p
, (valueT
) i_note
.namesz
, sizeof (e_note
.namesz
));
1457 p
= frag_more (sizeof (e_note
.descsz
));
1458 md_number_to_chars (p
, (valueT
) i_note
.descsz
, sizeof (e_note
.descsz
));
1459 p
= frag_more (sizeof (e_note
.type
));
1460 md_number_to_chars (p
, (valueT
) i_note
.type
, sizeof (e_note
.type
));
1461 p
= frag_more (len
+ 1);
1464 frag_align (2, 0, 0);
1466 subseg_set (seg
, subseg
);
1470 as_bad (_("expected quoted string"));
1472 demand_empty_rest_of_line ();
1476 obj_elf_size (ignore
)
1477 int ignore ATTRIBUTE_UNUSED
;
1479 char *name
= input_line_pointer
;
1480 char c
= get_symbol_end ();
1485 p
= input_line_pointer
;
1488 if (*input_line_pointer
!= ',')
1491 as_bad (_("expected comma after name `%s' in .size directive"), name
);
1493 ignore_rest_of_line ();
1496 input_line_pointer
++;
1498 if (exp
.X_op
== O_absent
)
1500 as_bad (_("missing expression in .size directive"));
1501 exp
.X_op
= O_constant
;
1502 exp
.X_add_number
= 0;
1505 sym
= symbol_find_or_make (name
);
1507 if (exp
.X_op
== O_constant
)
1509 S_SET_SIZE (sym
, exp
.X_add_number
);
1510 if (symbol_get_obj (sym
)->size
)
1512 xfree (symbol_get_obj (sym
)->size
);
1513 symbol_get_obj (sym
)->size
= NULL
;
1518 symbol_get_obj (sym
)->size
=
1519 (expressionS
*) xmalloc (sizeof (expressionS
));
1520 *symbol_get_obj (sym
)->size
= exp
;
1522 demand_empty_rest_of_line ();
1525 /* Handle the ELF .type pseudo-op. This sets the type of a symbol.
1526 There are five syntaxes:
1528 The first (used on Solaris) is
1530 The second (used on UnixWare) is
1532 The third (reportedly to be used on Irix 6.0) is
1534 The fourth (used on NetBSD/Arm and Linux/ARM) is
1536 The fifth (used on SVR4/860) is
1537 .type SYM,"function"
1541 obj_elf_type (ignore
)
1542 int ignore ATTRIBUTE_UNUSED
;
1547 const char *typename
;
1549 elf_symbol_type
*elfsym
;
1551 name
= input_line_pointer
;
1552 c
= get_symbol_end ();
1553 sym
= symbol_find_or_make (name
);
1554 elfsym
= (elf_symbol_type
*) symbol_get_bfdsym (sym
);
1555 *input_line_pointer
= c
;
1558 if (*input_line_pointer
== ',')
1559 ++input_line_pointer
;
1562 if ( *input_line_pointer
== '#'
1563 || *input_line_pointer
== '@'
1564 || *input_line_pointer
== '"'
1565 || *input_line_pointer
== '%')
1566 ++input_line_pointer
;
1568 typename
= input_line_pointer
;
1569 c
= get_symbol_end ();
1572 if (strcmp (typename
, "function") == 0
1573 || strcmp (typename
, "STT_FUNC") == 0)
1574 type
= BSF_FUNCTION
;
1575 else if (strcmp (typename
, "object") == 0
1576 || strcmp (typename
, "STT_OBJECT") == 0)
1578 #ifdef md_elf_symbol_type
1579 else if ((type
= md_elf_symbol_type (typename
, sym
, elfsym
)) != -1)
1583 as_bad (_("unrecognized symbol type \"%s\""), typename
);
1585 *input_line_pointer
= c
;
1587 if (*input_line_pointer
== '"')
1588 ++input_line_pointer
;
1590 elfsym
->symbol
.flags
|= type
;
1592 demand_empty_rest_of_line ();
1596 obj_elf_ident (ignore
)
1597 int ignore ATTRIBUTE_UNUSED
;
1599 static segT comment_section
;
1600 segT old_section
= now_seg
;
1601 int old_subsection
= now_subseg
;
1603 #ifdef md_flush_pending_output
1604 md_flush_pending_output ();
1607 if (!comment_section
)
1610 comment_section
= subseg_new (".comment", 0);
1611 bfd_set_section_flags (stdoutput
, comment_section
,
1612 SEC_READONLY
| SEC_HAS_CONTENTS
);
1617 subseg_set (comment_section
, 0);
1619 subseg_set (old_section
, old_subsection
);
1622 #ifdef INIT_STAB_SECTION
1624 /* The first entry in a .stabs section is special. */
1627 obj_elf_init_stab_section (seg
)
1633 unsigned int stroff
;
1635 /* Force the section to align to a longword boundary. Without this,
1636 UnixWare ar crashes. */
1637 bfd_set_section_alignment (stdoutput
, seg
, 2);
1639 /* Make space for this first symbol. */
1643 as_where (&file
, (unsigned int *) NULL
);
1644 stabstr_name
= (char *) alloca (strlen (segment_name (seg
)) + 4);
1645 strcpy (stabstr_name
, segment_name (seg
));
1646 strcat (stabstr_name
, "str");
1647 stroff
= get_stab_string_offset (file
, stabstr_name
);
1649 md_number_to_chars (p
, stroff
, 4);
1650 seg_info (seg
)->stabu
.p
= p
;
1655 /* Fill in the counts in the first entry in a .stabs section. */
1658 adjust_stab_sections (abfd
, sec
, xxx
)
1661 PTR xxx ATTRIBUTE_UNUSED
;
1668 if (strncmp (".stab", sec
->name
, 5))
1670 if (!strcmp ("str", sec
->name
+ strlen (sec
->name
) - 3))
1673 name
= (char *) alloca (strlen (sec
->name
) + 4);
1674 strcpy (name
, sec
->name
);
1675 strcat (name
, "str");
1676 strsec
= bfd_get_section_by_name (abfd
, name
);
1678 strsz
= bfd_section_size (abfd
, strsec
);
1681 nsyms
= bfd_section_size (abfd
, sec
) / 12 - 1;
1683 p
= seg_info (sec
)->stabu
.p
;
1686 bfd_h_put_16 (abfd
, (bfd_vma
) nsyms
, (bfd_byte
*) p
+ 6);
1687 bfd_h_put_32 (abfd
, (bfd_vma
) strsz
, (bfd_byte
*) p
+ 8);
1690 #ifdef NEED_ECOFF_DEBUG
1692 /* This function is called by the ECOFF code. It is supposed to
1693 record the external symbol information so that the backend can
1694 write it out correctly. The ELF backend doesn't actually handle
1695 this at the moment, so we do it ourselves. We save the information
1699 elf_ecoff_set_ext (sym
, ext
)
1701 struct ecoff_extr
*ext
;
1703 symbol_get_bfdsym (sym
)->udata
.p
= (PTR
) ext
;
1706 /* This function is called by bfd_ecoff_debug_externals. It is
1707 supposed to *EXT to the external symbol information, and return
1708 whether the symbol should be used at all. */
1711 elf_get_extr (sym
, ext
)
1715 if (sym
->udata
.p
== NULL
)
1717 *ext
= *(EXTR
*) sym
->udata
.p
;
1721 /* This function is called by bfd_ecoff_debug_externals. It has
1722 nothing to do for ELF. */
1726 elf_set_index (sym
, indx
)
1727 asymbol
*sym ATTRIBUTE_UNUSED
;
1728 bfd_size_type indx ATTRIBUTE_UNUSED
;
1732 #endif /* NEED_ECOFF_DEBUG */
1735 elf_frob_symbol (symp
, puntp
)
1739 struct elf_obj_sy
*sy_obj
;
1741 #ifdef NEED_ECOFF_DEBUG
1742 if (ECOFF_DEBUGGING
)
1743 ecoff_frob_symbol (symp
);
1746 sy_obj
= symbol_get_obj (symp
);
1748 if (sy_obj
->size
!= NULL
)
1750 switch (sy_obj
->size
->X_op
)
1754 (S_GET_VALUE (sy_obj
->size
->X_add_symbol
)
1755 + sy_obj
->size
->X_add_number
1756 - S_GET_VALUE (sy_obj
->size
->X_op_symbol
)));
1760 (S_GET_VALUE (sy_obj
->size
->X_add_symbol
)
1761 + sy_obj
->size
->X_add_number
));
1764 as_bad (_(".size expression too complicated to fix up"));
1767 free (sy_obj
->size
);
1768 sy_obj
->size
= NULL
;
1771 if (sy_obj
->versioned_name
!= NULL
)
1775 p
= strchr (sy_obj
->versioned_name
, ELF_VER_CHR
);
1778 /* This symbol was given a new name with the .symver directive.
1780 If this is an external reference, just rename the symbol to
1781 include the version string. This will make the relocs be
1782 against the correct versioned symbol.
1784 If this is a definition, add an alias. FIXME: Using an alias
1785 will permit the debugging information to refer to the right
1786 symbol. However, it's not clear whether it is the best
1789 if (! S_IS_DEFINED (symp
))
1791 /* Verify that the name isn't using the @@ syntax--this is
1792 reserved for definitions of the default version to link
1794 if (p
[1] == ELF_VER_CHR
)
1796 as_bad (_("invalid attempt to declare external version name as default in symbol `%s'"),
1797 sy_obj
->versioned_name
);
1800 S_SET_NAME (symp
, sy_obj
->versioned_name
);
1804 if (p
[1] == ELF_VER_CHR
&& p
[2] == ELF_VER_CHR
)
1808 /* The @@@ syntax is a special case. It renames the
1809 symbol name to versioned_name with one `@' removed. */
1810 l
= strlen (&p
[3]) + 1;
1811 memmove (&p
[2], &p
[3], l
);
1812 S_SET_NAME (symp
, sy_obj
->versioned_name
);
1818 /* FIXME: Creating a new symbol here is risky. We're
1819 in the final loop over the symbol table. We can
1820 get away with it only because the symbol goes to
1821 the end of the list, where the loop will still see
1822 it. It would probably be better to do this in
1823 obj_frob_file_before_adjust. */
1825 symp2
= symbol_find_or_make (sy_obj
->versioned_name
);
1827 /* Now we act as though we saw symp2 = sym. */
1829 S_SET_SEGMENT (symp2
, S_GET_SEGMENT (symp
));
1831 /* Subtracting out the frag address here is a hack
1832 because we are in the middle of the final loop. */
1835 - symbol_get_frag (symp
)->fr_address
));
1837 symbol_set_frag (symp2
, symbol_get_frag (symp
));
1839 /* This will copy over the size information. */
1840 copy_symbol_attributes (symp2
, symp
);
1842 if (S_IS_WEAK (symp
))
1845 if (S_IS_EXTERNAL (symp
))
1846 S_SET_EXTERNAL (symp2
);
1851 /* Double check weak symbols. */
1852 if (S_IS_WEAK (symp
))
1854 if (S_IS_COMMON (symp
))
1855 as_bad (_("symbol `%s' can not be both weak and common"),
1860 /* The Irix 5 and 6 assemblers set the type of any common symbol and
1861 any undefined non-function symbol to STT_OBJECT. We try to be
1862 compatible, since newer Irix 5 and 6 linkers care. However, we
1863 only set undefined symbols to be STT_OBJECT if we are on Irix,
1864 because that is the only time gcc will generate the necessary
1865 .global directives to mark functions. */
1867 if (S_IS_COMMON (symp
))
1868 symbol_get_bfdsym (symp
)->flags
|= BSF_OBJECT
;
1870 if (strstr (TARGET_OS
, "irix") != NULL
1871 && ! S_IS_DEFINED (symp
)
1872 && (symbol_get_bfdsym (symp
)->flags
& BSF_FUNCTION
) == 0)
1873 symbol_get_bfdsym (symp
)->flags
|= BSF_OBJECT
;
1877 /* If TC_PPC is defined, we used to force the type of a symbol to be
1878 BSF_OBJECT if it was otherwise unset. This was required by some
1879 version of VxWorks. Thomas de Lellis <tdel@windriver.com> says
1880 that this is no longer needed, so it is now commented out. */
1881 if ((symbol_get_bfdsym (symp
)->flags
1882 & (BSF_FUNCTION
| BSF_FILE
| BSF_SECTION_SYM
)) == 0
1883 && S_IS_DEFINED (symp
))
1884 symbol_get_bfdsym (symp
)->flags
|= BSF_OBJECT
;
1890 asection
**head
; /* Section lists. */
1891 unsigned int *elt_count
; /* Number of sections in each list. */
1892 unsigned int num_group
; /* Number of lists. */
1895 /* Called via bfd_map_over_sections. If SEC is a member of a group,
1896 add it to a list of sections belonging to the group. INF is a
1897 pointer to a struct group_list, which is where we store the head of
1901 build_group_lists (abfd
, sec
, inf
)
1902 bfd
*abfd ATTRIBUTE_UNUSED
;
1906 struct group_list
*list
= (struct group_list
*) inf
;
1907 const char *group_name
= elf_group_name (sec
);
1910 if (group_name
== NULL
)
1913 /* If this group already has a list, add the section to the head of
1915 for (i
= 0; i
< list
->num_group
; i
++)
1917 if (strcmp (group_name
, elf_group_name (list
->head
[i
])) == 0)
1919 elf_next_in_group (sec
) = list
->head
[i
];
1920 list
->head
[i
] = sec
;
1921 list
->elt_count
[i
] += 1;
1926 /* New group. Make the arrays bigger in chunks to minimize calls to
1928 i
= list
->num_group
;
1931 unsigned int newsize
= i
+ 128;
1932 list
->head
= xrealloc (list
->head
, newsize
* sizeof (*list
->head
));
1933 list
->elt_count
= xrealloc (list
->elt_count
,
1934 newsize
* sizeof (*list
->elt_count
));
1936 list
->head
[i
] = sec
;
1937 list
->elt_count
[i
] = 1;
1938 list
->num_group
+= 1;
1944 struct group_list list
;
1947 bfd_map_over_sections (stdoutput
, adjust_stab_sections
, (PTR
) 0);
1949 /* Go find section groups. */
1952 list
.elt_count
= NULL
;
1953 bfd_map_over_sections (stdoutput
, build_group_lists
, (PTR
) &list
);
1955 /* Make the SHT_GROUP sections that describe each section group. We
1956 can't set up the section contents here yet, because elf section
1957 indices have yet to be calculated. elf.c:set_group_contents does
1958 the rest of the work. */
1959 for (i
= 0; i
< list
.num_group
; i
++)
1961 const char *group_name
= elf_group_name (list
.head
[i
]);
1965 s
= subseg_force_new (group_name
, 0);
1966 flags
= SEC_READONLY
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
| SEC_GROUP
;
1968 || !bfd_set_section_flags (stdoutput
, s
, flags
)
1969 || !bfd_set_section_alignment (stdoutput
, s
, 2))
1971 as_fatal (_("can't create group: %s"),
1972 bfd_errmsg (bfd_get_error ()));
1975 /* Pass a pointer to the first section in this group. */
1976 elf_next_in_group (s
) = list
.head
[i
];
1978 s
->_raw_size
= 4 * (list
.elt_count
[i
] + 1);
1979 s
->contents
= frag_more (s
->_raw_size
);
1980 frag_now
->fr_fix
= frag_now_fix_octets ();
1983 #ifdef elf_tc_final_processing
1984 elf_tc_final_processing ();
1988 /* It removes any unneeded versioned symbols from the symbol table. */
1991 elf_frob_file_before_adjust ()
1997 for (symp
= symbol_rootP
; symp
; symp
= symbol_next (symp
))
1998 if (symbol_get_obj (symp
)->versioned_name
)
2000 if (!S_IS_DEFINED (symp
))
2004 /* The @@@ syntax is a special case. If the symbol is
2005 not defined, 2 `@'s will be removed from the
2008 p
= strchr (symbol_get_obj (symp
)->versioned_name
,
2011 if (p
[1] == ELF_VER_CHR
&& p
[2] == ELF_VER_CHR
)
2013 size_t l
= strlen (&p
[3]) + 1;
2014 memmove (&p
[1], &p
[3], l
);
2016 if (symbol_used_p (symp
) == 0
2017 && symbol_used_in_reloc_p (symp
) == 0)
2018 symbol_remove (symp
, &symbol_rootP
, &symbol_lastP
);
2024 /* It is required that we let write_relocs have the opportunity to
2025 optimize away fixups before output has begun, since it is possible
2026 to eliminate all fixups for a section and thus we never should
2027 have generated the relocation section. */
2030 elf_frob_file_after_relocs ()
2032 #ifdef NEED_ECOFF_DEBUG
2033 if (ECOFF_DEBUGGING
)
2034 /* Generate the ECOFF debugging information. */
2036 const struct ecoff_debug_swap
*debug_swap
;
2037 struct ecoff_debug_info debug
;
2042 = get_elf_backend_data (stdoutput
)->elf_backend_ecoff_debug_swap
;
2043 know (debug_swap
!= (const struct ecoff_debug_swap
*) NULL
);
2044 ecoff_build_debug (&debug
.symbolic_header
, &buf
, debug_swap
);
2046 /* Set up the pointers in debug. */
2047 #define SET(ptr, offset, type) \
2048 debug.ptr = (type) (buf + debug.symbolic_header.offset)
2050 SET (line
, cbLineOffset
, unsigned char *);
2051 SET (external_dnr
, cbDnOffset
, PTR
);
2052 SET (external_pdr
, cbPdOffset
, PTR
);
2053 SET (external_sym
, cbSymOffset
, PTR
);
2054 SET (external_opt
, cbOptOffset
, PTR
);
2055 SET (external_aux
, cbAuxOffset
, union aux_ext
*);
2056 SET (ss
, cbSsOffset
, char *);
2057 SET (external_fdr
, cbFdOffset
, PTR
);
2058 SET (external_rfd
, cbRfdOffset
, PTR
);
2059 /* ssext and external_ext are set up just below. */
2063 /* Set up the external symbols. */
2064 debug
.ssext
= debug
.ssext_end
= NULL
;
2065 debug
.external_ext
= debug
.external_ext_end
= NULL
;
2066 if (! bfd_ecoff_debug_externals (stdoutput
, &debug
, debug_swap
, true,
2067 elf_get_extr
, elf_set_index
))
2068 as_fatal (_("failed to set up debugging information: %s"),
2069 bfd_errmsg (bfd_get_error ()));
2071 sec
= bfd_get_section_by_name (stdoutput
, ".mdebug");
2072 assert (sec
!= NULL
);
2074 know (stdoutput
->output_has_begun
== false);
2076 /* We set the size of the section, call bfd_set_section_contents
2077 to force the ELF backend to allocate a file position, and then
2078 write out the data. FIXME: Is this really the best way to do
2080 sec
->_raw_size
= bfd_ecoff_debug_size (stdoutput
, &debug
, debug_swap
);
2082 /* Pass BUF to bfd_set_section_contents because this will
2083 eventually become a call to fwrite, and ISO C prohibits
2084 passing a NULL pointer to a stdio function even if the
2085 pointer will not be used. */
2086 if (! bfd_set_section_contents (stdoutput
, sec
, (PTR
) buf
,
2087 (file_ptr
) 0, (bfd_size_type
) 0))
2088 as_fatal (_("can't start writing .mdebug section: %s"),
2089 bfd_errmsg (bfd_get_error ()));
2091 know (stdoutput
->output_has_begun
== true);
2092 know (sec
->filepos
!= 0);
2094 if (! bfd_ecoff_write_debug (stdoutput
, &debug
, debug_swap
,
2096 as_fatal (_("could not write .mdebug section: %s"),
2097 bfd_errmsg (bfd_get_error ()));
2099 #endif /* NEED_ECOFF_DEBUG */
2104 /* Heavily plagarized from obj_elf_version. The idea is to emit the
2105 SCO specific identifier in the .notes section to satisfy the SCO
2108 This looks more complicated than it really is. As opposed to the
2109 "obvious" solution, this should handle the cross dev cases
2110 correctly. (i.e, hosting on a 64 bit big endian processor, but
2111 generating SCO Elf code) Efficiency isn't a concern, as there
2112 should be exactly one of these sections per object module.
2114 SCO OpenServer 5 identifies it's ELF modules with a standard ELF
2117 int_32 namesz = 4 ; Name size
2118 int_32 descsz = 12 ; Descriptive information
2120 char name[4] = "SCO" ; Originator name ALWAYS SCO + NULL
2121 int_32 version = (major ver # << 16) | version of tools ;
2122 int_32 source = (tool_id << 16 ) | 1 ;
2123 int_32 info = 0 ; These are set by the SCO tools, but we
2124 don't know enough about the source
2125 environment to set them. SCO ld currently
2126 ignores them, and recommends we set them
2129 #define SCO_MAJOR_VERSION 0x1
2130 #define SCO_MINOR_VERSION 0x1
2140 asection
*seg
= now_seg
;
2141 subsegT subseg
= now_subseg
;
2142 Elf_Internal_Note i_note
;
2143 Elf_External_Note e_note
;
2144 asection
*note_secp
= (asection
*) NULL
;
2147 /* create the .note section */
2149 note_secp
= subseg_new (".note", 0);
2150 bfd_set_section_flags (stdoutput
,
2152 SEC_HAS_CONTENTS
| SEC_READONLY
);
2154 /* process the version string */
2157 i_note
.descsz
= 12; /* 12 descriptive bytes */
2158 i_note
.type
= NT_VERSION
; /* Contains a version string */
2160 p
= frag_more (sizeof (i_note
.namesz
));
2161 md_number_to_chars (p
, (valueT
) i_note
.namesz
, 4);
2163 p
= frag_more (sizeof (i_note
.descsz
));
2164 md_number_to_chars (p
, (valueT
) i_note
.descsz
, 4);
2166 p
= frag_more (sizeof (i_note
.type
));
2167 md_number_to_chars (p
, (valueT
) i_note
.type
, 4);
2172 /* Note: this is the version number of the ELF we're representing */
2174 md_number_to_chars (p
, (SCO_MAJOR_VERSION
<< 16) | (SCO_MINOR_VERSION
), 4);
2176 /* Here, we pick a magic number for ourselves (yes, I "registered"
2177 it with SCO. The bottom bit shows that we are compat with the
2180 md_number_to_chars (p
, 0x4c520000 | 0x0001, 4);
2182 /* If we knew (or cared) what the source language options were, we'd
2183 fill them in here. SCO has given us permission to ignore these
2184 and just set them to zero. */
2186 md_number_to_chars (p
, 0x0000, 4);
2188 frag_align (2, 0, 0);
2190 /* We probably can't restore the current segment, for there likely
2193 subseg_set (seg
, subseg
);
2197 #endif /* SCO_ELF */
2200 elf_separate_stab_sections ()
2202 #ifdef NEED_ECOFF_DEBUG
2203 return (!ECOFF_DEBUGGING
);
2210 elf_init_stab_section (seg
)
2213 #ifdef NEED_ECOFF_DEBUG
2214 if (!ECOFF_DEBUGGING
)
2216 obj_elf_init_stab_section (seg
);
2219 const struct format_ops elf_format_ops
=
2221 bfd_target_elf_flavour
,
2222 0, /* dfl_leading_underscore */
2223 1, /* emit_section_symbols */
2228 elf_frob_file_before_adjust
,
2229 elf_frob_file_after_relocs
,
2230 elf_s_get_size
, elf_s_set_size
,
2231 elf_s_get_align
, elf_s_set_align
,
2238 elf_copy_symbol_attributes
,
2239 #ifdef NEED_ECOFF_DEBUG
2240 ecoff_generate_asm_lineno
,
2243 0, /* generate_asm_lineno */
2244 0, /* process_stab */
2246 elf_separate_stab_sections
,
2247 elf_init_stab_section
,
2248 elf_sec_sym_ok_for_reloc
,
2250 #ifdef NEED_ECOFF_DEBUG
2253 0, /* ecoff_set_ext */
2255 elf_obj_read_begin_hook
,
2256 elf_obj_symbol_new_hook