Automatic date update in version.in
[deliverable/binutils-gdb.git] / gas / config / obj-elf.h
CommitLineData
252b5132 1/* ELF object file format.
b3adc24a 2 Copyright (C) 1992-2020 Free Software Foundation, Inc.
252b5132
RH
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
ec2655a6 8 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
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
4b4da160
NC
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
252b5132 20
252b5132
RH
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
5110c57e
HPN
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
4ca72d38 32#ifndef OUTPUT_FLAVOR
252b5132 33#define OUTPUT_FLAVOR bfd_target_elf_flavour
4ca72d38 34#endif
252b5132 35
252b5132
RH
36#define BYTES_IN_WORD 4 /* for now */
37#include "bfd/elf-bfd.h"
38
49309057
ILT
39#include "targ-cpu.h"
40
41#ifdef TC_ALPHA
a8316fe2 42#define ECOFF_DEBUGGING (alpha_flag_mdebug > 0)
49309057
ILT
43extern int alpha_flag_mdebug;
44#endif
45
46/* For now, always set ECOFF_DEBUGGING for a MIPS target. */
47#ifdef TC_MIPS
ecb4347a
DJ
48#define ECOFF_DEBUGGING mips_flag_mdebug
49extern int mips_flag_mdebug;
49309057
ILT
50#endif /* TC_MIPS */
51
4c63da97
AM
52#ifdef OBJ_MAYBE_ECOFF
53#ifndef ECOFF_DEBUGGING
54#define ECOFF_DEBUGGING 1
55#endif
56#endif
57
252b5132 58/* Additional information we keep for each symbol. */
252b5132
RH
59struct elf_obj_sy
60{
49309057
ILT
61 /* Whether the symbol has been marked as local. */
62 int local;
63
252b5132
RH
64 /* Use this to keep track of .size expressions that involve
65 differences that we can't compute yet. */
66 expressionS *size;
67
68 /* The name specified by the .symver directive. */
69 char *versioned_name;
49309057
ILT
70
71#ifdef ECOFF_DEBUGGING
72 /* If we are generating ECOFF debugging information, we need some
73 additional fields for each symbol. */
74 struct efdr *ecoff_file;
75 struct localsym *ecoff_symbol;
76 valueT ecoff_extern_size;
77#endif
252b5132 78};
252b5132 79
a8c4d40b
L
80/* Match section group name, the sh_info field and the section_id
81 field. */
82struct elf_section_match
83{
84 const char *group_name;
85 unsigned int info;
86 unsigned int section_id;
87 flagword flags;
88};
89
252b5132
RH
90#define OBJ_SYMFIELD_TYPE struct elf_obj_sy
91
252b5132
RH
92#ifndef FALSE
93#define FALSE 0
94#define TRUE !FALSE
95#endif
96
5110c57e 97#ifndef obj_begin
252b5132 98#define obj_begin() elf_begin ()
5110c57e 99#endif
dbe2df79 100extern void elf_begin (void);
252b5132 101
199114c2
AS
102#ifndef LOCAL_LABEL_PREFIX
103#define LOCAL_LABEL_PREFIX '.'
104#endif
105
252b5132 106/* should be conditional on address size! */
814f6641 107#define elf_symbol(asymbol) ((elf_symbol_type *) (&(asymbol)->the_bfd))
252b5132 108
4ca72d38 109#ifndef S_GET_SIZE
49309057
ILT
110#define S_GET_SIZE(S) \
111 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_size)
4ca72d38
AM
112#endif
113#ifndef S_SET_SIZE
252b5132 114#define S_SET_SIZE(S,V) \
49309057 115 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_size = (V))
4ca72d38 116#endif
252b5132 117
4ca72d38 118#ifndef S_GET_ALIGN
49309057
ILT
119#define S_GET_ALIGN(S) \
120 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_value)
4ca72d38
AM
121#endif
122#ifndef S_SET_ALIGN
252b5132 123#define S_SET_ALIGN(S,V) \
49309057 124 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_value = (V))
4ca72d38 125#endif
252b5132 126
dbe2df79 127int elf_s_get_other (symbolS *);
4c63da97
AM
128#ifndef S_GET_OTHER
129#define S_GET_OTHER(S) (elf_s_get_other (S))
130#endif
131#ifndef S_SET_OTHER
252b5132 132#define S_SET_OTHER(S,V) \
49309057 133 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_other = (V))
4c63da97 134#endif
252b5132
RH
135
136extern asection *gdb_section;
137
4ca72d38 138#ifndef obj_frob_file
252b5132 139#define obj_frob_file elf_frob_file
4ca72d38 140#endif
dbe2df79 141extern void elf_frob_file (void);
252b5132 142
339681c0
L
143#ifndef obj_frob_file_before_adjust
144#define obj_frob_file_before_adjust elf_frob_file_before_adjust
145#endif
dbe2df79 146extern void elf_frob_file_before_adjust (void);
339681c0 147
4ca72d38 148#ifndef obj_frob_file_after_relocs
252b5132 149#define obj_frob_file_after_relocs elf_frob_file_after_relocs
4ca72d38 150#endif
dbe2df79 151extern void elf_frob_file_after_relocs (void);
252b5132 152
07a53e5c
RH
153/* If the target doesn't have special processing for labels, take care of
154 dwarf2 output at the object file level. */
155#ifndef tc_frob_label
156#include "dwarf2dbg.h"
157#define obj_frob_label dwarf2_emit_label
158#endif
159
5110c57e 160#ifndef obj_app_file
252b5132 161#define obj_app_file elf_file_symbol
5110c57e 162#endif
c04f5787 163extern void elf_file_symbol (const char *, int);
252b5132 164
dbe2df79 165extern void obj_elf_section_change_hook (void);
252b5132 166
dbe2df79 167extern void obj_elf_section (int);
82b8a785 168extern const char * obj_elf_section_name (void);
dbe2df79
AM
169extern void obj_elf_previous (int);
170extern void obj_elf_version (int);
171extern void obj_elf_common (int);
172extern void obj_elf_data (int);
173extern void obj_elf_text (int);
e8cf2216 174extern void obj_elf_change_section
a8c4d40b 175 (const char *, unsigned int, bfd_vma, int, struct elf_section_match *,
a91e1603 176 int, int);
68d20676
NC
177extern void obj_elf_vtable_inherit (int);
178extern void obj_elf_vtable_entry (int);
179extern struct fix * obj_elf_get_vtable_inherit (void);
180extern struct fix * obj_elf_get_vtable_entry (void);
9440a904
RS
181extern bfd_boolean obj_elf_seen_attribute
182 (int, unsigned int);
0420f52b 183extern int obj_elf_vendor_attribute (int);
252b5132
RH
184
185/* BFD wants to write the udata field, which is a no-no for the
a161fe53 186 predefined section symbols in bfd/section.c. They are read-only. */
4ca72d38 187#ifndef obj_sec_sym_ok_for_reloc
252b5132 188#define obj_sec_sym_ok_for_reloc(SEC) ((SEC)->owner != 0)
4ca72d38 189#endif
252b5132 190
dbe2df79 191void elf_obj_read_begin_hook (void);
4c63da97
AM
192#ifndef obj_read_begin_hook
193#define obj_read_begin_hook elf_obj_read_begin_hook
194#endif
195
dbe2df79 196void elf_obj_symbol_new_hook (symbolS *);
4c63da97
AM
197#ifndef obj_symbol_new_hook
198#define obj_symbol_new_hook elf_obj_symbol_new_hook
199#endif
200
dbe2df79 201void elf_copy_symbol_attributes (symbolS *, symbolS *);
4ca72d38 202#ifndef OBJ_COPY_SYMBOL_ATTRIBUTES
8fd3e36b
AM
203#define OBJ_COPY_SYMBOL_ATTRIBUTES(DEST, SRC) \
204 (elf_copy_symbol_attributes (DEST, SRC))
4ca72d38 205#endif
252b5132 206
709001e9
MM
207void elf_adjust_symtab (void);
208#ifndef obj_adjust_symtab
209#define obj_adjust_symtab elf_adjust_symtab
210#endif
211
5110c57e
HPN
212#ifndef SEPARATE_STAB_SECTIONS
213/* Avoid ifndef each separate macro setting by wrapping the whole of the
214 stab group on the assumption that whoever sets SEPARATE_STAB_SECTIONS
215 caters to ECOFF_DEBUGGING and the right setting of INIT_STAB_SECTIONS
216 and OBJ_PROCESS_STAB too, without needing the tweaks below. */
217
252b5132
RH
218/* Stabs go in a separate section. */
219#define SEPARATE_STAB_SECTIONS 1
220
221/* We need 12 bytes at the start of the section to hold some initial
222 information. */
dbe2df79 223extern void obj_elf_init_stab_section (segT);
252b5132
RH
224#define INIT_STAB_SECTION(seg) obj_elf_init_stab_section (seg)
225
252b5132 226#ifdef ECOFF_DEBUGGING
252b5132
RH
227/* We smuggle stabs in ECOFF rather than using a separate section.
228 The Irix linker can not handle a separate stabs section. */
229
230#undef SEPARATE_STAB_SECTIONS
231#define SEPARATE_STAB_SECTIONS (!ECOFF_DEBUGGING)
232
233#undef INIT_STAB_SECTION
234#define INIT_STAB_SECTION(seg) \
814f6641 235 ((void) (ECOFF_DEBUGGING ? 0 : (obj_elf_init_stab_section (seg), 0)))
252b5132 236
4ca72d38 237#undef OBJ_PROCESS_STAB
252b5132
RH
238#define OBJ_PROCESS_STAB(seg, what, string, type, other, desc) \
239 if (ECOFF_DEBUGGING) \
240 ecoff_stab ((seg), (what), (string), (type), (other), (desc))
241#endif /* ECOFF_DEBUGGING */
242
bf514e21 243#endif /* SEPARATE_STAB_SECTIONS not defined. */
5110c57e 244
dbe2df79 245extern void elf_frob_symbol (symbolS *, int *);
252b5132
RH
246#ifndef obj_frob_symbol
247#define obj_frob_symbol(symp, punt) elf_frob_symbol (symp, &punt)
248#endif
249
dbe2df79 250extern void elf_pop_insert (void);
4ca72d38 251#ifndef obj_pop_insert
252b5132 252#define obj_pop_insert() elf_pop_insert()
4ca72d38 253#endif
252b5132
RH
254
255#ifndef OBJ_MAYBE_ELF
ae4a729b 256/* If OBJ_MAYBE_ELF then obj-multi.h will define obj_ecoff_set_ext. */
252b5132 257#define obj_ecoff_set_ext elf_ecoff_set_ext
252b5132 258struct ecoff_extr;
dbe2df79 259extern void elf_ecoff_set_ext (symbolS *, struct ecoff_extr *);
252b5132 260#endif
3b22753a
L
261extern asection *elf_com_section_ptr;
262extern symbolS * elf_common_parse (int ignore ATTRIBUTE_UNUSED, symbolS *symbolP,
263 addressT size);
252b5132
RH
264
265#endif /* _OBJ_ELF_H */
This page took 0.855169 seconds and 4 git commands to generate.