]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gas/config/obj-elf.h
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / gas / config / obj-elf.h
1 /* ELF object file format.
2 Copyright (C) 1992-2021 Free Software Foundation, Inc.
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
10
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
20
21 /* HP PA-RISC support was contributed by the Center for Software Science
22 at the University of Utah. */
23
24 #ifndef _OBJ_ELF_H
25 #define _OBJ_ELF_H
26
27 #define OBJ_ELF 1
28
29 /* Note that all macros in this file should be wrapped in #ifndef, for
30 sake of obj-multi.h which includes this file. */
31
32 #ifndef OUTPUT_FLAVOR
33 #define OUTPUT_FLAVOR bfd_target_elf_flavour
34 #endif
35
36 #define BYTES_IN_WORD 4 /* for now */
37 #include "bfd/elf-bfd.h"
38
39 #include "targ-cpu.h"
40
41 #ifdef TC_ALPHA
42 #define ECOFF_DEBUGGING (alpha_flag_mdebug > 0)
43 extern int alpha_flag_mdebug;
44 #endif
45
46 /* For now, always set ECOFF_DEBUGGING for a MIPS target. */
47 #ifdef TC_MIPS
48 #define ECOFF_DEBUGGING mips_flag_mdebug
49 extern int mips_flag_mdebug;
50 #endif /* TC_MIPS */
51
52 #ifdef OBJ_MAYBE_ECOFF
53 #ifndef ECOFF_DEBUGGING
54 #define ECOFF_DEBUGGING 1
55 #endif
56 #endif
57
58 enum elf_visibility
59 {
60 visibility_unchanged = 0,
61 visibility_local,
62 visibility_hidden,
63 visibility_remove
64 };
65
66 struct elf_versioned_name_list
67 {
68 char *name;
69 struct elf_versioned_name_list *next;
70 };
71
72 /* Additional information we keep for each symbol. */
73 struct elf_obj_sy
74 {
75 /* Whether the symbol has been marked as local. */
76 unsigned int local : 1;
77
78 /* Whether the symbol has been marked for rename with @@@. */
79 unsigned int rename : 1;
80
81 /* Whether the symbol has a bad version name. */
82 unsigned int bad_version : 1;
83
84 /* Whether visibility of the symbol should be changed. */
85 ENUM_BITFIELD (elf_visibility) visibility : 2;
86
87 /* Use this to keep track of .size expressions that involve
88 differences that we can't compute yet. */
89 expressionS *size;
90
91 /* The list of names specified by the .symver directive. */
92 struct elf_versioned_name_list *versioned_name;
93
94 #ifdef ECOFF_DEBUGGING
95 /* If we are generating ECOFF debugging information, we need some
96 additional fields for each symbol. */
97 struct efdr *ecoff_file;
98 struct localsym *ecoff_symbol;
99 valueT ecoff_extern_size;
100 #endif
101 };
102
103 /* Match section group name, the sh_info field and the section_id
104 field. */
105 struct elf_section_match
106 {
107 const char * group_name;
108 const char * linked_to_symbol_name;
109 unsigned int section_id;
110 unsigned int sh_info; /* ELF section information. */
111 bfd_vma sh_flags; /* ELF section flags. */
112 flagword flags;
113 };
114
115 #define OBJ_SYMFIELD_TYPE struct elf_obj_sy
116
117 #ifndef FALSE
118 #define FALSE 0
119 #define TRUE !FALSE
120 #endif
121
122 #ifndef obj_begin
123 #define obj_begin() elf_begin ()
124 #endif
125 extern void elf_begin (void);
126
127 #ifndef LOCAL_LABEL_PREFIX
128 #define LOCAL_LABEL_PREFIX '.'
129 #endif
130
131 /* should be conditional on address size! */
132 #define elf_symbol(asymbol) ((elf_symbol_type *) (&(asymbol)->the_bfd))
133
134 #ifndef S_GET_SIZE
135 #define S_GET_SIZE(S) \
136 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_size)
137 #endif
138 #ifndef S_SET_SIZE
139 #define S_SET_SIZE(S,V) \
140 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_size = (V))
141 #endif
142
143 #ifndef S_GET_ALIGN
144 #define S_GET_ALIGN(S) \
145 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_value)
146 #endif
147 #ifndef S_SET_ALIGN
148 #define S_SET_ALIGN(S,V) \
149 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_value = (V))
150 #endif
151
152 int elf_s_get_other (symbolS *);
153 #ifndef S_GET_OTHER
154 #define S_GET_OTHER(S) (elf_s_get_other (S))
155 #endif
156 #ifndef S_SET_OTHER
157 #define S_SET_OTHER(S,V) \
158 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_other = (V))
159 #endif
160
161 extern asection *gdb_section;
162
163 #ifndef obj_frob_file
164 #define obj_frob_file elf_frob_file
165 #endif
166 extern void elf_frob_file (void);
167
168 #ifndef obj_frob_file_before_adjust
169 #define obj_frob_file_before_adjust elf_frob_file_before_adjust
170 #endif
171 extern void elf_frob_file_before_adjust (void);
172
173 #ifndef obj_frob_file_after_relocs
174 #define obj_frob_file_after_relocs elf_frob_file_after_relocs
175 #endif
176 extern void elf_frob_file_after_relocs (void);
177
178 /* If the target doesn't have special processing for labels, take care of
179 dwarf2 output at the object file level. */
180 #ifndef tc_frob_label
181 #include "dwarf2dbg.h"
182 #define obj_frob_label dwarf2_emit_label
183 #endif
184
185 #ifndef obj_app_file
186 #define obj_app_file elf_file_symbol
187 #endif
188 extern void elf_file_symbol (const char *, int);
189
190 extern void obj_elf_section_change_hook (void);
191
192 extern void obj_elf_section (int);
193 extern const char * obj_elf_section_name (void);
194 extern void obj_elf_previous (int);
195 extern void obj_elf_version (int);
196 extern void obj_elf_common (int);
197 extern void obj_elf_data (int);
198 extern void obj_elf_text (int);
199 extern void obj_elf_change_section
200 (const char *, unsigned int, bfd_vma, int, struct elf_section_match *,
201 int, int);
202 extern void obj_elf_vtable_inherit (int);
203 extern void obj_elf_vtable_entry (int);
204 extern struct fix * obj_elf_get_vtable_inherit (void);
205 extern struct fix * obj_elf_get_vtable_entry (void);
206 extern bfd_boolean obj_elf_seen_attribute
207 (int, unsigned int);
208 extern int obj_elf_vendor_attribute (int);
209
210 /* BFD wants to write the udata field, which is a no-no for the
211 predefined section symbols in bfd/section.c. They are read-only. */
212 #ifndef obj_sec_sym_ok_for_reloc
213 #define obj_sec_sym_ok_for_reloc(SEC) ((SEC)->owner != 0)
214 #endif
215
216 void elf_obj_read_begin_hook (void);
217 #ifndef obj_read_begin_hook
218 #define obj_read_begin_hook elf_obj_read_begin_hook
219 #endif
220
221 void elf_obj_symbol_new_hook (symbolS *);
222 #ifndef obj_symbol_new_hook
223 #define obj_symbol_new_hook elf_obj_symbol_new_hook
224 #endif
225
226 void elf_obj_symbol_clone_hook (symbolS *, symbolS *);
227 #ifndef obj_symbol_clone_hook
228 #define obj_symbol_clone_hook elf_obj_symbol_clone_hook
229 #endif
230
231 void elf_copy_symbol_attributes (symbolS *, symbolS *);
232 #ifndef OBJ_COPY_SYMBOL_ATTRIBUTES
233 #define OBJ_COPY_SYMBOL_ATTRIBUTES(DEST, SRC) \
234 (elf_copy_symbol_attributes (DEST, SRC))
235 #endif
236
237 void elf_adjust_symtab (void);
238 #ifndef obj_adjust_symtab
239 #define obj_adjust_symtab elf_adjust_symtab
240 #endif
241
242 #ifndef SEPARATE_STAB_SECTIONS
243 /* Avoid ifndef each separate macro setting by wrapping the whole of the
244 stab group on the assumption that whoever sets SEPARATE_STAB_SECTIONS
245 caters to ECOFF_DEBUGGING and the right setting of INIT_STAB_SECTIONS
246 and OBJ_PROCESS_STAB too, without needing the tweaks below. */
247
248 /* Stabs go in a separate section. */
249 #define SEPARATE_STAB_SECTIONS 1
250
251 /* We need 12 bytes at the start of the section to hold some initial
252 information. */
253 extern void obj_elf_init_stab_section (segT);
254 #define INIT_STAB_SECTION(seg) obj_elf_init_stab_section (seg)
255
256 #ifdef ECOFF_DEBUGGING
257 /* We smuggle stabs in ECOFF rather than using a separate section.
258 The Irix linker can not handle a separate stabs section. */
259
260 #undef SEPARATE_STAB_SECTIONS
261 #define SEPARATE_STAB_SECTIONS (!ECOFF_DEBUGGING)
262
263 #undef INIT_STAB_SECTION
264 #define INIT_STAB_SECTION(seg) \
265 ((void) (ECOFF_DEBUGGING ? 0 : (obj_elf_init_stab_section (seg), 0)))
266
267 #undef OBJ_PROCESS_STAB
268 #define OBJ_PROCESS_STAB(seg, what, string, type, other, desc) \
269 if (ECOFF_DEBUGGING) \
270 ecoff_stab ((seg), (what), (string), (type), (other), (desc))
271 #endif /* ECOFF_DEBUGGING */
272
273 #endif /* SEPARATE_STAB_SECTIONS not defined. */
274
275 extern void elf_frob_symbol (symbolS *, int *);
276 #ifndef obj_frob_symbol
277 #define obj_frob_symbol(symp, punt) elf_frob_symbol (symp, &punt)
278 #endif
279
280 extern void elf_pop_insert (void);
281 #ifndef obj_pop_insert
282 #define obj_pop_insert() elf_pop_insert()
283 #endif
284
285 #ifndef OBJ_MAYBE_ELF
286 /* If OBJ_MAYBE_ELF then obj-multi.h will define obj_ecoff_set_ext. */
287 #define obj_ecoff_set_ext elf_ecoff_set_ext
288 struct ecoff_extr;
289 extern void elf_ecoff_set_ext (symbolS *, struct ecoff_extr *);
290 #endif
291 extern asection *elf_com_section_ptr;
292 extern symbolS * elf_common_parse (int ignore ATTRIBUTE_UNUSED, symbolS *symbolP,
293 addressT size);
294
295 #endif /* _OBJ_ELF_H */